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;








1















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)











share|improve this question






























    1















    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)











    share|improve this question


























      1












      1








      1








      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)











      share|improve this question














      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






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 27 at 19:57









      FrankFrank

      739 bronze badges




      739 bronze badges

























          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
          );



          );













          draft saved

          draft discarded


















          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.



















          draft saved

          draft discarded
















































          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.




          draft saved


          draft discarded














          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





















































          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







          Popular posts from this blog

          Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

          Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

          Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript