Skip to main content
Skip table of contents

settings/osx-signing-password

The password for the iOS app-signing server.

GET

Returns the password for the iOS signing server in plain text.

Example request

Request

CODE
curl -v -L -b c.txt -c c.txt -X GET \
  http://bc.qwe.com/mocana-app-control/rest/settings/osx-signing-password

Response

CODE
{
  "message": "",
  "settings": [{
    "code": "OPT_CODE_OSX_SIGNING_PASSWORD",
    "string_data": "Qwerty1@"
  }],
  "status": "OK"
}

POST

Sets the password for the iOS signing server.

Parameters

ParameterDescription
 osx_signing_password

Supply the password for the signing user (set with settings/osx-signing-username) to authenticate to the iOS signing server. 

Example request

Request

CODE
curl -v -L -b c.txt -c c.txt -X POST \
  http://bc.qwe.com/mocana-app-control/rest/settings/osx-signing-password 
  -d osx_signing_password="signingPassword"

Response

CODE
{
  "message": "",
  "settings": [{
    "code": "OPT_CODE_OSX_SIGNING_PASSWORD",
    "string_data": "signingPassword"
  }],
  "status": "OK"
}
JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.