neuberfran
neuberfran

Reputation: 271

Cloud app secret disappeared from bluemix?

I can't find Cloud secret app in bluemix dashboard.

I will need cloud secret app to do 2 projects bellow:

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

http://pt.slideshare.net/ibmdeveloperworks/blue-list-pushandroid

This link below did not answer the main question. My questioning that is: Where is Cloud app secret ??

[Not able to find App key and App Secret in Bluemix. Instead of the those, App GUID is available

And more: I need a tutorial/material about connect Server-Bluemix-Node-RED-JSON with Client-Android 5.0 Lollipop USING websocket

Thank's

Upvotes: 1

Views: 120

Answers (1)

paulsm4
paulsm4

Reputation: 121669

If you're trying to run (older) BlueMix tutorials with a newer release, see also this SO link:

Where is the application secret?

If you have Mobile Client Access instead of Mobile Application Security then it sounds like you created a MobileFirst Starter Boilerplate (the newest release) rather than a Mobile Cloud Boilerplate (deprecated as of December 15th, 2015).

The new services within the MobileFirst Starter Boilerplate do not use the Application Secret for security or validation. I would recommend you take a look at that linked deprecation announcement and see what all has changed in the move to the new services and what you as a developer would need to do to migrate your preexisting code.

Upvotes: 1

Related Questions