有没有人成功使用Satellizer(https://github.com/sahat/satellizer)使用Oauth1.0连接到Yahoo API?我可以让Oauth2.0工作,但我必须使用1.0来访问Fantasy Sports API。在我的角度模块中,我声明了oauth1.0设置......
$authProvider.oauth1({
name: 'yahoo',
url: '/auth/yahoo',
authorizationEndpoint: 'https://api.login.yahoo.com/oauth/v2/get_request_token',
redirectUri: '/auth/yahoo/callback',
type: '1.0',
popupOptions: { width: 559, height: 519 },
type: "1.0",
clientId: 'my-client-id',
});
因为我需要先获取request_token,所以我不确定如何设置它。