Refresh Token
POST <https://auth3.upbond.io/oauth/token>
Content-Type: application/x-www-form-urlencoded
grant_type=refresh_token&client_id=YOUR_CLIENT_ID&client_secret=YOUR_CLIENT_SECRET&refresh_token=YOUR_REFRESH_TOKENcurl --request POST \\
--url '<https://auth3.upbond.io/oauth/token>' \\
--header 'content-type: application/x-www-form-urlencoded' \\
--data 'grant_type=refresh_token&client_id=YOUR_CLIENT_ID&client_secret=YOUR_CLIENT_SECRET&refresh_token=YOUR_REFRESH_TOKEN'var request = require("request");
var options = {
method: 'POST',
url: '<https://auth3.upbond.io/oauth/token>',
headers: { 'content-type': 'application/x-www-form-urlencoded' },
form: {
grant_type: 'refresh_token',
client_id: 'YOUR_CLIENT_ID',
client_secret: 'YOUR_CLIENT_SECRET',
refresh_token: 'YOUR_REFRESH_TOKEN'
}
};
request(options, function (error, response, body) {
if (error) throw new Error(error);
console.log(body);
});Request Parameters
Parameter
Description
Last updated
Was this helpful?