クラシックファイルタイプは2021年1月をもって使用できなくなりました。クラシックファイルを移行することも、PDFをダウンロードすることもできます。詳細はこちら

API Calls stuck on valid Token

回答済み
0

コメント

3件のコメント

  • 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

サインインしてコメントを残してください。