Twitter oauth配置丢失(Parse TwitterUtils)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Twitter oauth配置丢失(Parse TwitterUtils)相关的知识,希望对你有一定的参考价值。
没有得到任何有效的解决方案,用于将Twitter身份验证与解析服务器集成我已经阅读了几乎github上的所有解决方案并应用它但没有运气。更多信息我使用了ParseUI项目。
https://github.com/parse-community/ParseUI-android
我使用了parse'com.parse提供的这个库:parsetwitterutils-android:1.10.6'来验证用户。但没有运气。通过互联网搜索后,我发现有些人告诉我们在index.js页面上添加以下代码。
oauth: {
twitter: {
consumer_key: "qweREbUdsfsdfsdfsdfsd4wIg9EX", // REQUIRED
consumer_secret: "AZrUDjnEVUsdfsdfsdfsdfsdfsdfsdfxcpxBtM0X3" // REQUIRED
},
facebook: {
appIds: "8489456465"
}
}
之后我得到回应:
04-27 01:53:32.340 16920-17090/app.com.parse.example D/OkHttp: {"code":1,"error":"Twitter auth configuration missing"}
<-- END HTTP (55-byte body)
04-27 01:53:47.148 16920-17113/app.com.parse.example D/OkHttp: {"authData":{"twitter":{"consumer_key":"VdzzbGHfHgFhgFHGf4wIg9EX","auth_token":"157620898-qbODfHyHJKGHGJHGJHGJHGmF38LeJ2cd","screen_name":"blackjack","consumer_secret":"AZrUwerHJGJHGJHGJHGhgjhgZwJopxBtM0X3","id":"1554545698","auth_token_secret":"PK6IgEQMrszxcjhgjhgjhjhJHGrh1Ure8IGbuPX6H"}}}
--> END POST (319-byte body)
04-27 01:53:47.239 16920-17113/app.com.parse.example D/OkHttp: {"code":1,"error":"Twitter auth configuration missing"}
<-- END HTTP (55-byte body)
04-27 01:53:47.255 16920-16920/app.com.parse.example W/ParseLoginFragment: Twitter login failed, exception: com.parse.ParseRequest$ParseRequestException: Twitter auth configuration missing
还有:
04-27 16:31:33.705 4998-4998/com.parse.loginsample.basic W/ParseLoginFragment: Twitter login failed, exception: com.parse.ParseRequest$ParseRequestException: i/o failure
参考答案/讨论没有解决我的问题:
https://github.com/parse-community/parse-server/issues/973
Parse server open source Android Twitter Login is not working
oauth选项已弃用,将在以后的版本中删除,请改用auth选项。
http://docs.parseplatform.org/parse-server/guide/#oauth-and-3rd-party-authentication
请参阅更改日志:
https://github.com/parse-community/parse-server/blob/master/CHANGELOG.md#230
例:
auth: {
twitter: {
consumer_key: "qweREbUdsfsdfsdfsdfsd4wIg9EX", // REQUIRED
consumer_secret: "AZrUDjnEVUsdfsdfsdfsdfsdfsdfsdfxcpxBtM0X3" // REQUIRED
},
facebook: {
appIds: "8489456465"
}
}
以上是关于Twitter oauth配置丢失(Parse TwitterUtils)的主要内容,如果未能解决你的问题,请参考以下文章
Firebase Twitter oAuth 回调不适用于 Swift ios13
使用带有 RSA-SHA1 的 Twitter joauth 验证 OAuth1a 签名请求?
如何从机器人聊天中获取 Twitter OAuth 访问令牌/秘密?