码迷,mamicode.com
首页 > 数据库 > 详细

google api , using a refresh token to get the access token

时间:2014-12-21 22:05:36      阅读:211      评论:0      收藏:0      [点我收藏+]

标签:

 

router.get(‘/refresh‘,function(req,res){
  oauth2Client.credentials = { refresh_token: ‘1/RqVyL7yLBxwsCA4h5IzDJuMVcCwX3munQz1ntGyg99I‘};
  oauth2Client.refreshAccessToken(function(err, tokens){
    res.send({
      access_token: tokens.access_token,
      token:tokens
    });
  });
});

 

google api , using a refresh token to get the access token

标签:

原文地址:http://www.cnblogs.com/zyip/p/4177053.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!