用xauth认证获取到的AccessToken请求api不成功

发布于 2022-09-03 13:01:49 字数 2065 浏览 22 评论 0

用的是这里的开源项目https://github.com/Mashape/ma...
应该是这一步出错了

oa.post(options, callback);
oa.get(options, callback);
oa.delete(options, callback);
oa.patch(options, callback);
oa.put(options, callback);

// Alternatively, you can use the old node-oauth style: (Where method is one of five above.)
oa.method(url, oauth_token, oauth_token_secret, body, type, parameters, callback);

获取到了acess_token,但是调取api的时候报错"error":"Invalid access token",求大神帮忙看一下 感激不尽

var express = require('express');
    var router = express.Router();
    var OAuth = require('mashape-oauth').OAuth;
    var consumerKey    = 'myconsumerKey';
    var consumerSecret = 'myconsumerSecret';
    var oa = new OAuth({ 
      accessUrl:"http://fanfou.com/oauth/request_token",
      consumerKey:consumerKey,
      consumerSecret:consumerSecret,
      version:'1.0',
      signatureMethod:'HMAC-SHA1'
    });
    
    /* GET home page. */
    router.get('/', function(req, res, next) {
      res.render('index', { title: 'hello' });
    });
    router.route("/fanfou").get(function(req,res){   
        res.render("fanfou",{title:'fanfou'});
    }).post(function(req,res){                        
        var username = req.body.username;  
        var password= req.body.password;
        oa.getXAuthAccessToken(username, password, function (error, oauth_token, oauth_token_secret, results) {
          if (error)
            console.log('err');
          else
          {
          /* res.json({
            oauth_token:oauth_token,
            oauth_token_secret:oauth_token_secret
           })*/
           oa.get('http://api.fanfou.com/statuses/home_timeline.json',
           oauth_token,oauth_token_secret,null,null,null,function(error,data){
                   res.json({
                     data:data
                   });
                   //console.log(JSON.parse(data));
           }); 
          }
    
        });
      
    });
    module.exports = router;

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

一影成城 2022-09-10 13:01:49

终于发现哪里错了

var oa = new OAuth({ 
      accessUrl:"http://fanfou.com/oauth/request_token",
      consumerKey:consumerKey,
      consumerSecret:consumerSecret,
      version:'1.0',
      signatureMethod:'HMAC-SHA1'
    });

这里面的 accessUrl填错了,应该是http://fanfou.com/oauth/access_token

离去的眼神 2022-09-10 13:01:49

你是用的是 getXAuthAccessToken 获得的 XAuth 认证的 Token,然后把凭证交给了 OAuth 的方法,肯定错了啊

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文