本文介绍了我正在开发cordova Bluemix推送通知应用程序.我找不到"applicationSecret"当我从Bluemix仪表板创建时的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在开发cordova Bluemix推送通知应用程序.

I'm developing a cordova Bluemix push notification application.

当我从Bluemix仪表板创建时,找不到"applicationSecret".

I'm not able to find "applicationSecret" when I create from the Bluemix dashboard.

bluemixpush: function() {
  console.log("device is ready, let's initialize bluemix!");
  var values = {
    applicationId: "",
    applicationSecret: "<INSERT_APPLICATION_SECRET_HERE>",
    applicationRoute: ""
  }; 

推荐答案

您的应用程序秘密位于移动应用程序安全性"控制面板中,可以从应用程序控制面板左侧的导航菜单中找到.

Your application secret is in the Mobile Application Security Dashboard which can be found from the navigation menu to the left in your application dashboard.

这篇关于我正在开发cordova Bluemix推送通知应用程序.我找不到"applicationSecret"当我从Bluemix仪表板创建时的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-01 14:22