oauth-1.0a
oauth-1.0a copied to clipboard
How can a callback be specified in the Authorization header?
Hi is it possible to specify an oauth_callback in the OAuth options?
you can send it in the oauth data:
const request_data = {
url: 'https://bitbucket.org/api/1.0/oauth/request_token',
method: 'POST',
data: { oauth_callback: 'http://www.ddo.me' },
}
@ddo Thank you will try that.