Classic file types are no longer available for use as of January 2021. You can transition your classic files or download a PDF. Learn More

API Calls stuck on valid Token

Con risposta
0

Commenti

3 commenti

  • Jeff Hickey

    Hi Nick, what does your code look like for requesting the bearer token? Please don't include your actual Client ID or Client Secret if you post your bearer token request code.

    0
  • Nick Ryberg
    host = 'api.app.wdesk.com'
    path = '/iam/v1/oauth2/token'
    bearer_headers = {
      'Content-Type': 'application/x-www-form-urlencoded',
      'charset': 'UTF-8'
    }
    bearer_url = 'https://' + host + path
    bearer_data = {'client_id':client_id, 'client_secret':secret, 'grant_type':'client_credentials'}
    bearer_result = requests.post(bearer_url, data= bearer_data, headers=bearer_headers)
    bearer_json = json.loads(x.text)
    bearer_token = bearer_json['access_token']
    0
  • Nick Ryberg

    Annnd....  realized I didn't carry the names through correctly.  It's working now. 

    0

Accedi per aggiungere un commento.