白木
投稿
コメント
pythonにて開発しております。 import requests API_ID = 'xxxxxxxxxx' DOMAIN_ID = 99999999 SERVER_CKEY = 'yyyyyyyyyy' #https://developers.worksmobile.com/jp/console/openapi/main #上記URL(コンソール)においてService API Consumer Keyにて、Reidirect URLに以下を設定して、発行しました。 REDIRECT_URI = 'https://auth.worksmobile.com/ba/{API_ID}/service/authorize?client_id={SERVER_CKEY}&domain={DOMAIN_ID}' apiurl = f'https://auth.worksmobile.com/ba/{API_ID}/service/authorize' params = { 'client_id': SERVER_CKEY, 'domain': DOMAIN_ID, 'redirect_uri': REDIRECT_URI, 'state': '9999' } header = {} response = requests.get(apiurl, proxies=http_proxies, headers=header, params=params) リクエストURLは以下になります。 https://auth.worksmobile.com/ba/xxxxxxxxxx/service/authorize?client_id=yyyyyyyyyy&domain=99999999&redirect_uri=https%3A%2F%2Fauth.worksmobile.com%2Fba%2Fxxxxxxxxxx%2Fservice%2Fauthorize%3Fclient_id%3Dyyyyyyyyyy%26domain%3D99999999&state=9999&isRefreshed=true レスポンスはエラーとなります。 何が間違っているかをお教えください。
その他 2020.11.05