gpt4 book ai didi

blackberry - 在 Android、Windows、IOS 上使用 webworks sdk 获取 BBM Pin

转载 作者:行者123 更新时间:2023-12-04 20:39:09 24 4
gpt4 key购买 nike

我正在使用基于 bbm 的 Phonegap 为 Android、IOS、Windows 开发应用程序。

但是我找不到任何方法从设备中检索 bbm pin。

是否可以使用 webworks api 从设备中检索 bbm pin?

最佳答案

从 WebWorks 2.0 开始就可以了。

要在您的项目中使用此 API,请添加身份插件:

webworks plugin add com.blackberry.identity

并检查只读字符串 blackberry.identity.uuid
更多信息:

https://developer.blackberry.com/html5/apis/v2_2/blackberry.identity.html

如果您的意思是 uuid与 BBM 平台(不是黑莓设备 uuid)相关,那么如果您考虑 following code :
<script type="text/javascript">

// Create callback invoked when access changes
document.addEventListener("onaccesschanged", accessChangedCallback);

function accessChangedCallback(accessible, status) {
if (status == "unregistered") {
// App is unregistered, proceed to register
registerApp();
} else if (status == "allowed") {
// Access allowed
}
// Listen for other status...
};

function registerApp() {
// Register with the platform
blackberry.bbm.platform.register({
uuid: "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" // Randomly generated UUID
});
}

</script>

你可以看到, uuid用于注册应用程序只是随机生成 uuid .对于您的应用程序,当您调用 registerApp 时生成您自己的 UUID,以作为唯一标识符与 BBM 平台一起使用。

刚刚找到 the following information :

每个应用程序都必须定义自己的通用唯一标识符 (UUID),以便它可以唯一地标识自己。此 UUID 用于在测试和开发期间向 BBM SP 服务器注册。 BlackBerry App World™ 店面中的应用程序会自动分配其自己的 UUID。在 BlackBerry WebWorks 中,UUID 存储在注册时使用的选项参数中。
options = {
uuid: "33490f91-ad95-4ba9-82c4-33f6ad69fbbc"
};

blackberry.bbm.platform.register(options);

在帖子下方有一个简短的讨论:
Q: can you please indicate where/how to find the AppWorld listed application UUID

A: That isn't visible to you. It's handled automatically.

Q: So how can we use the app's AppWorld UUID to register with BBM? Which was the context in which you mentioned the UUID.

A: In your code you always use your UUID you created. When the application is downloaded from App World the OS will automatically swap out your custom UUID with the one from App World.

关于blackberry - 在 Android、Windows、IOS 上使用 webworks sdk 获取 BBM Pin,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29707314/

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