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
Parameter | Description |
---|---|
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"
}