gpt4 book ai didi

ios - phonegap oauthio 插件不会加载

转载 作者:行者123 更新时间:2023-11-29 10:44:00 25 4
gpt4 key购买 nike

我正在测试 phone gap oauthio 插件,但无法让它工作

遵循文档。

使用命令行添加插件并且还安装了 inappbrowser

还将此添加到我的 config.xml

<gap:plugin name="org.apache.cordova.inappbrowser" />
<gap:plugin name="com.phonegap.plugins.oauthio" />

inappbrowser 已加载并正常工作。但 OAUTH 不是。我在这里和那里添加了一些 alert()但是当我添加一个警报来显示 OAUTH 的内容时,它不会发生

alert('device ready'); //to see if the device is ready, no problems here
alert(window.open); //to see if inbrowserapp is loaded, no problems here
alert(OAuth);// no message. looks like is not defined,also tried alert(OAuth.initialize) same luck
OAuth.initialize("VeQmyEu0QtzIOO9WjM1IlAU0ty4");
alert('postinit');

在插件内部,定义为“OAuth”,所以名称是正确的,我安装的插件是

oauthio-test % phonegap plugin list
[phonegap] com.phonegap.plugins.oauthio
[phonegap] org.apache.cordova.inappbrowser

我还删除了“platform/ios”的内容以防止文件缓存

我的权限是这些

<access origin="*" />
<access origin="http://127.0.0.1*"/> <!-- allow local pages -->
<access origin="*graph.facebook.com*" />
<access origin="*api.twitter.com*" />
<access origin="*github.com*" />

到目前为止还没有运气。感觉就像我在IE6中调试的时候一样

编辑:添加了完整代码,显示 im 在事件“ondeviceready”中

 $(document).on('deviceready', function() {
alert('device ready');//shows ok
alert(window.open); //shows ok
alert(OAuth.OAuth.initialize);//it dies here
OAuth.initialize("VeQmyEu0QtzIOO9WjM1IlAU0ty4");
alert('postinit');//this alert won't displayed
$('#fb-connect').on('click', function() {
$('#result').html("");
OAuth.popup("facebook", function(e,r) {
if (e)
$('#result').html('error: ' + e.message);
else
// the access_token is available via r.access_token
// but the http functions automagically wrap the jquery calls
r.get('/me').done(function(data) {
$('#result').html("facebook: Hello, " + data.name + " !");
});
});
});

最佳答案

在终端中你需要通过这个 url 并输入

phonegap 插件添加 https://github.com/oauth-io/oauth-phonegap ”。

并且您可以使用android 或iOS 模拟器来运行该应用程序。

关于ios - phonegap oauthio 插件不会加载,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23094781/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com