Skip to content

Commit ac5be38

Browse files
author
pgilmorepf
committed
https://api.playfab.com/releaseNotes#160502
== 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.
2 parents 5f6b60d + 58d7f5b commit ac5be38

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

PlayFabSDK/PlayFabAdminApi.js

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ if(!PlayFab.settings) {
1818
if(!PlayFab._internalSettings) {
1919
PlayFab._internalSettings = {
2020
sessionTicket: null,
21-
sdkVersion: "0.16.160425",
21+
sdkVersion: "0.17.160502",
2222
productionServerUrl: ".playfabapi.com",
2323
logicServerUrl: null,
2424

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

311+
SetStoreSegmentOverrides: function (request, callback) {
312+
if (PlayFab.settings.developerSecretKey == null) throw "Must have PlayFab.settings.developerSecretKey set to call this method";
313+
314+
PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Admin/SetStoreSegmentOverrides", request, "X-SecretKey", PlayFab.settings.developerSecretKey, callback);
315+
},
316+
311317
SetTitleData: function (request, callback) {
312318
if (PlayFab.settings.developerSecretKey == null) throw "Must have PlayFab.settings.developerSecretKey set to call this method";
313319

PlayFabSDK/PlayFabClientApi.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ if(!PlayFab.settings) {
1818
if(!PlayFab._internalSettings) {
1919
PlayFab._internalSettings = {
2020
sessionTicket: null,
21-
sdkVersion: "0.16.160425",
21+
sdkVersion: "0.17.160502",
2222
productionServerUrl: ".playfabapi.com",
2323
logicServerUrl: null,
2424

PlayFabSDK/PlayFabMatchmakerApi.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ if(!PlayFab.settings) {
1818
if(!PlayFab._internalSettings) {
1919
PlayFab._internalSettings = {
2020
sessionTicket: null,
21-
sdkVersion: "0.16.160425",
21+
sdkVersion: "0.17.160502",
2222
productionServerUrl: ".playfabapi.com",
2323
logicServerUrl: null,
2424

PlayFabSDK/PlayFabServerApi.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ if(!PlayFab.settings) {
1818
if(!PlayFab._internalSettings) {
1919
PlayFab._internalSettings = {
2020
sessionTicket: null,
21-
sdkVersion: "0.16.160425",
21+
sdkVersion: "0.17.160502",
2222
productionServerUrl: ".playfabapi.com",
2323
logicServerUrl: null,
2424

0 commit comments

Comments
 (0)