angularjs – Ionic Framework Twitter集成

前端之家收集整理的这篇文章主要介绍了angularjs – Ionic Framework Twitter集成前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我目前正在开发一个项目,我必须使用Ionic Framework进行twitter集成.

我正在使用离子论坛的示例程序:http://forum.ionicframework.com/t/twitter-integration-with-jsoauth/3936

可在bitbucket获得:https://bitbucket.org/aaronksaunders/ionic.twitter.sample

我已经用两种方式对它进行了测试,即使用离子服务和模拟器,但结果相同:每当我点击登录时,新的浏览器窗口都有地址:https://api.twitter.com/oauth/authorize?出现包含以下错误消息.

Whoa there!
There is no request token for this page. That's the special key we need
from applications asking to use your Twitter account. Please go back to
the site or application that sent you here and try again; it was probably 
just a mistake.

我已将twitter API密钥和API密钥放在适当的位置.

解决方法

我其实喜欢使用 hello.js.

这是一个很棒的图书馆,可以为您处理社交媒体令牌.

示例初始化:

hello.init({
    facebook : '12345678912345'
},{
    // Define the OAuth2 return URL
    redirect_uri : 'http://adodson.com/hello.js/redirect.html'
});

登录

hello( "facebook" ).login().then( function(){
    alert("You are signed in to Facebook");
},function( e ){
    alert("Signin error: " + e.error.message );
});

登录后,您可以拨打您选择的社交媒体帐户.

猜你在找的Angularjs相关文章