次の方法で JavaScript fetch を使用してアクセス トークンを取得しようとします。
fetch('https://api.dropboxapi.com/oauth2/token', {
method: 'POST',
code: AUTHORIZATION_CODE,
grant_type: 'authorization_code',
redirect_uri: `${REDIRECT_URI}${window.location.pathname}`,
headers: {
'Content-Type': "application/x-www-form-urlencoded"
},
CLIENT_ID: CLIENT_SECRET
})
.then(res => res.json())
.then(data => console.log('access data =>', data))
.catch(err => console.log('access err =>',err));
「https://www.dropbox.com/oauth2/authorize...」ドメインからのリダイレクトに成功した後、AUTHORIZATION_CODE を受け取りました。
しかし、私は次のようなエラーがあります
{"error_description": "No auth function available for given request", "error": "invalid_request"}
私は何を間違っていますか?ここから curl リクエストの例に従っているため: https://www.dropbox.com/developers/documentation/http/documentation#oauth2-token
curl https://api.dropbox.com/oauth2/token \
-d code=<AUTHORIZATION_CODE> \
-d grant_type=authorization_code \
-d redirect_uri=<REDIRECT_URI> \
-u <APP_KEY>:<APP_SECRET>
ありがとう!