Skip to content

Commit

Permalink
https://api.playfab.com/releaseNotes#160502
Browse files Browse the repository at this point in the history
== SDK Patch Notes, May 2, 2016 ==

=== API Changes ===
New Admin API: SetStoreSegemntOverrides
Some deprecated and internal fields are no longer published with the SDK: ConfirmationMessege and ForceLink. SDK-Upgrade warning: If you were previously setting these fields, simply remove them.

== UnrealBlueprintSDK Specific Changes==
Revised the readme and the example project to use a simpler login process, and the new simpler ExecuteCloudScript method.
When there is an api error, the details of that error will report more accurately and display better debug information.
We are removing the "Beta" flagging from Unreal sdks, they are now a full member of our SDK collection, with full support and quality checks.
  • Loading branch information
pgilmorepf committed May 2, 2016
2 parents 5f6b60d + 58d7f5b commit ac5be38
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
8 changes: 7 additions & 1 deletion PlayFabSDK/PlayFabAdminApi.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ if(!PlayFab.settings) {
if(!PlayFab._internalSettings) {
PlayFab._internalSettings = {
sessionTicket: null,
sdkVersion: "0.16.160425",
sdkVersion: "0.17.160502",
productionServerUrl: ".playfabapi.com",
logicServerUrl: null,

Expand Down Expand Up @@ -308,6 +308,12 @@ PlayFab.AdminApi = {
PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Admin/SetStoreItems", request, "X-SecretKey", PlayFab.settings.developerSecretKey, callback);
},

SetStoreSegmentOverrides: function (request, callback) {
if (PlayFab.settings.developerSecretKey == null) throw "Must have PlayFab.settings.developerSecretKey set to call this method";

PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Admin/SetStoreSegmentOverrides", request, "X-SecretKey", PlayFab.settings.developerSecretKey, callback);
},

SetTitleData: function (request, callback) {
if (PlayFab.settings.developerSecretKey == null) throw "Must have PlayFab.settings.developerSecretKey set to call this method";

Expand Down
2 changes: 1 addition & 1 deletion PlayFabSDK/PlayFabClientApi.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ if(!PlayFab.settings) {
if(!PlayFab._internalSettings) {
PlayFab._internalSettings = {
sessionTicket: null,
sdkVersion: "0.16.160425",
sdkVersion: "0.17.160502",
productionServerUrl: ".playfabapi.com",
logicServerUrl: null,

Expand Down
2 changes: 1 addition & 1 deletion PlayFabSDK/PlayFabMatchmakerApi.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ if(!PlayFab.settings) {
if(!PlayFab._internalSettings) {
PlayFab._internalSettings = {
sessionTicket: null,
sdkVersion: "0.16.160425",
sdkVersion: "0.17.160502",
productionServerUrl: ".playfabapi.com",
logicServerUrl: null,

Expand Down
2 changes: 1 addition & 1 deletion PlayFabSDK/PlayFabServerApi.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ if(!PlayFab.settings) {
if(!PlayFab._internalSettings) {
PlayFab._internalSettings = {
sessionTicket: null,
sdkVersion: "0.16.160425",
sdkVersion: "0.17.160502",
productionServerUrl: ".playfabapi.com",
logicServerUrl: null,

Expand Down

0 comments on commit ac5be38

Please sign in to comment.