Export GPX file to Strava from App - SwiftHow do I call Objective-C code from Swift?What does an exclamation mark mean in the Swift language?How do I get a reference to the app delegate in Swift?Loading/Downloading image from URL on SwiftDetect if app is being built for device or simulator in SwiftHow do I get the App version and build number using Swift?Global constants file in SwiftExport GPX file from LeafletUIWebView doesn't reload image file from Documents folderUpload Workout Parameters to Strava - Swift
Is the internet in Madagascar faster than in UK?
How much does Commander Data weigh?
Reusing studs to hang shoe bins
Under what circumstances does intermodulation become an issue in a filter after LNA setup?
Why is getting a PhD considered "financially irresponsible" by some people?
Retroactively modifying humans for Earth?
Did anybody find out it was Anakin who blew up the command center?
Did Dr. Hannibal Lecter like Clarice or was he attracted to her?
Router on a stick not connecting 2 different VLANs
Why did my folder names end up like this, and how can I fix this using a script?
How many petaflops does it take to land on the moon? What does Artemis need with an Aitken?
LINQ for generating all possible permutations
Why error propagation in CBC mode encryption affect two blocks?
Papers on arXiv solving the same problem at the same time
Is it unusual for a math department not to have a mail/web server?
about to retire but not retired yet, employed but not working any more
50-move rule: only the last 50 or any consecutive 50?
What is the name of this plot that has rows with two connected dots?
How can I draw lines between cells from two different tabulars to indicate correlation?
Half filled water bottle
Which old Technic set included large yellow motor?
Billiard balls collision
rationalizing sieges in a modern/near-future setting
Shift lens vs move body?
Export GPX file to Strava from App - Swift
How do I call Objective-C code from Swift?What does an exclamation mark mean in the Swift language?How do I get a reference to the app delegate in Swift?Loading/Downloading image from URL on SwiftDetect if app is being built for device or simulator in SwiftHow do I get the App version and build number using Swift?Global constants file in SwiftExport GPX file from LeafletUIWebView doesn't reload image file from Documents folderUpload Workout Parameters to Strava - Swift
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I'm trying to send my fitness info from my app to strava via a gpx file created in app (the file get created and populated without any problem). I've done some research but can't seem to find the right answer, everything I found is about Email, message or even airdrop. When I run my code it return me with the file but nothing about uploading the file to strava. The console return me this error as well:
(String) = "The file “” doesn't exist." swift
Here's what I've done so far:
func saveWorkout(_ workout: FirebaseWorkout, completion: @escaping (_ success: Bool, _ error: Error?) -> Void)
let gpxString = workout.getGpx()
do
let documentsDir = try FileManager.default.url(for: .documentDirectory, in: .userDomainMask, appropriateFor: nil, create: true)
let fileURL = documentsDir.appendingPathComponent("workoutData").appendingPathExtension("gpx")
print("File Path: (fileURL.path)")
try gpxString.write(to: fileURL, atomically: true, encoding: String.Encoding.utf8)
guard let fileData = try? Data(contentsOf: fileURL) else
workoutTT().analytics("EXPORT_GPX_ERROR")
completion(false, nil)
return
let opts: [String: Any?] = [
"file": fileData,
"data_type": "gpx",
"name": workout.name,
"description": workout.notes
]
if self.isAuthorized && userSettings.membership.hasFullAccess
workoutTT().analyticsEvent(kEventCategoryThirdParty, eventAction: "SAVE_WORKOUT", eventLabel: ThirdPartyApplication.strava.rawValue, eventValue: 1)
workoutTT().debugLog("Strava: Save Workout")
self.refreshTokenIfNeeded
_ = self.oauthswift.client.post("https://www.strava.com/api/v3/uploads", parameters: opts as OAuthSwift.Parameters, success: (_) in
workoutTT().debugLog("Strava: Save Workout Success")
completion(true, nil)
) (error) in
workoutTT().debugLog("Strava: Save Workout (error.localizedDescription)")
completion(false, error)
else
completion(false, nil)
catch
workoutTT().analytics("GPX_CONVERT_CATCH_ERROR", debug: true, timestamp: true, doPrint: true)
// failed to write file – bad permissions, bad filename, missing permissions, or more likely it can't be converted to the encoding
completion(false, nil)
swift export strava
add a comment |
I'm trying to send my fitness info from my app to strava via a gpx file created in app (the file get created and populated without any problem). I've done some research but can't seem to find the right answer, everything I found is about Email, message or even airdrop. When I run my code it return me with the file but nothing about uploading the file to strava. The console return me this error as well:
(String) = "The file “” doesn't exist." swift
Here's what I've done so far:
func saveWorkout(_ workout: FirebaseWorkout, completion: @escaping (_ success: Bool, _ error: Error?) -> Void)
let gpxString = workout.getGpx()
do
let documentsDir = try FileManager.default.url(for: .documentDirectory, in: .userDomainMask, appropriateFor: nil, create: true)
let fileURL = documentsDir.appendingPathComponent("workoutData").appendingPathExtension("gpx")
print("File Path: (fileURL.path)")
try gpxString.write(to: fileURL, atomically: true, encoding: String.Encoding.utf8)
guard let fileData = try? Data(contentsOf: fileURL) else
workoutTT().analytics("EXPORT_GPX_ERROR")
completion(false, nil)
return
let opts: [String: Any?] = [
"file": fileData,
"data_type": "gpx",
"name": workout.name,
"description": workout.notes
]
if self.isAuthorized && userSettings.membership.hasFullAccess
workoutTT().analyticsEvent(kEventCategoryThirdParty, eventAction: "SAVE_WORKOUT", eventLabel: ThirdPartyApplication.strava.rawValue, eventValue: 1)
workoutTT().debugLog("Strava: Save Workout")
self.refreshTokenIfNeeded
_ = self.oauthswift.client.post("https://www.strava.com/api/v3/uploads", parameters: opts as OAuthSwift.Parameters, success: (_) in
workoutTT().debugLog("Strava: Save Workout Success")
completion(true, nil)
) (error) in
workoutTT().debugLog("Strava: Save Workout (error.localizedDescription)")
completion(false, error)
else
completion(false, nil)
catch
workoutTT().analytics("GPX_CONVERT_CATCH_ERROR", debug: true, timestamp: true, doPrint: true)
// failed to write file – bad permissions, bad filename, missing permissions, or more likely it can't be converted to the encoding
completion(false, nil)
swift export strava
add a comment |
I'm trying to send my fitness info from my app to strava via a gpx file created in app (the file get created and populated without any problem). I've done some research but can't seem to find the right answer, everything I found is about Email, message or even airdrop. When I run my code it return me with the file but nothing about uploading the file to strava. The console return me this error as well:
(String) = "The file “” doesn't exist." swift
Here's what I've done so far:
func saveWorkout(_ workout: FirebaseWorkout, completion: @escaping (_ success: Bool, _ error: Error?) -> Void)
let gpxString = workout.getGpx()
do
let documentsDir = try FileManager.default.url(for: .documentDirectory, in: .userDomainMask, appropriateFor: nil, create: true)
let fileURL = documentsDir.appendingPathComponent("workoutData").appendingPathExtension("gpx")
print("File Path: (fileURL.path)")
try gpxString.write(to: fileURL, atomically: true, encoding: String.Encoding.utf8)
guard let fileData = try? Data(contentsOf: fileURL) else
workoutTT().analytics("EXPORT_GPX_ERROR")
completion(false, nil)
return
let opts: [String: Any?] = [
"file": fileData,
"data_type": "gpx",
"name": workout.name,
"description": workout.notes
]
if self.isAuthorized && userSettings.membership.hasFullAccess
workoutTT().analyticsEvent(kEventCategoryThirdParty, eventAction: "SAVE_WORKOUT", eventLabel: ThirdPartyApplication.strava.rawValue, eventValue: 1)
workoutTT().debugLog("Strava: Save Workout")
self.refreshTokenIfNeeded
_ = self.oauthswift.client.post("https://www.strava.com/api/v3/uploads", parameters: opts as OAuthSwift.Parameters, success: (_) in
workoutTT().debugLog("Strava: Save Workout Success")
completion(true, nil)
) (error) in
workoutTT().debugLog("Strava: Save Workout (error.localizedDescription)")
completion(false, error)
else
completion(false, nil)
catch
workoutTT().analytics("GPX_CONVERT_CATCH_ERROR", debug: true, timestamp: true, doPrint: true)
// failed to write file – bad permissions, bad filename, missing permissions, or more likely it can't be converted to the encoding
completion(false, nil)
swift export strava
I'm trying to send my fitness info from my app to strava via a gpx file created in app (the file get created and populated without any problem). I've done some research but can't seem to find the right answer, everything I found is about Email, message or even airdrop. When I run my code it return me with the file but nothing about uploading the file to strava. The console return me this error as well:
(String) = "The file “” doesn't exist." swift
Here's what I've done so far:
func saveWorkout(_ workout: FirebaseWorkout, completion: @escaping (_ success: Bool, _ error: Error?) -> Void)
let gpxString = workout.getGpx()
do
let documentsDir = try FileManager.default.url(for: .documentDirectory, in: .userDomainMask, appropriateFor: nil, create: true)
let fileURL = documentsDir.appendingPathComponent("workoutData").appendingPathExtension("gpx")
print("File Path: (fileURL.path)")
try gpxString.write(to: fileURL, atomically: true, encoding: String.Encoding.utf8)
guard let fileData = try? Data(contentsOf: fileURL) else
workoutTT().analytics("EXPORT_GPX_ERROR")
completion(false, nil)
return
let opts: [String: Any?] = [
"file": fileData,
"data_type": "gpx",
"name": workout.name,
"description": workout.notes
]
if self.isAuthorized && userSettings.membership.hasFullAccess
workoutTT().analyticsEvent(kEventCategoryThirdParty, eventAction: "SAVE_WORKOUT", eventLabel: ThirdPartyApplication.strava.rawValue, eventValue: 1)
workoutTT().debugLog("Strava: Save Workout")
self.refreshTokenIfNeeded
_ = self.oauthswift.client.post("https://www.strava.com/api/v3/uploads", parameters: opts as OAuthSwift.Parameters, success: (_) in
workoutTT().debugLog("Strava: Save Workout Success")
completion(true, nil)
) (error) in
workoutTT().debugLog("Strava: Save Workout (error.localizedDescription)")
completion(false, error)
else
completion(false, nil)
catch
workoutTT().analytics("GPX_CONVERT_CATCH_ERROR", debug: true, timestamp: true, doPrint: true)
// failed to write file – bad permissions, bad filename, missing permissions, or more likely it can't be converted to the encoding
completion(false, nil)
swift export strava
swift export strava
asked Mar 27 at 19:57
FrankFrank
739 bronze badges
739 bronze badges
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55385494%2fexport-gpx-file-to-strava-from-app-swift%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55385494%2fexport-gpx-file-to-strava-from-app-swift%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown