0

I'm develop application that should use Upwork API (Winforms + C#). To have access to Upwork data, need to authorize there. But in https://developers.upwork.com I don't see how can I login via web request/desktop application.

Valery Yegorov
  • 171
  • 1
  • 11

1 Answers1

1

In order to use upwork api, there are more requirements:

For authentication by default probably you will use OAuth1 so when your apiKey was enabled, to request your token you will have to follow this steps

kirpi4ik
  • 26
  • 3
  • I have api keys (customerKey and customerSecret). But after I need login to upwork via api – Valery Yegorov Mar 21 '18 at 08:58
  • 1
    As mentioned above, Upwork is using standard OAuth1.0 so you need to use any http library which will allows you to perform HTTP requests and follow the OAuth1.0 standard in your code. You can find here more details about the OAuth1.0 flow https://www.youtube.com/watch?v=BzZpgSHdKfU . Similar steps you will have to follow using steps described here https://developers.upwork.com/?lang=python#authentication_oauth-10 – kirpi4ik Mar 21 '18 at 13:37