private void BuyItem() { List<ItemPuchaseRequest> itemsToPurchase = new List<ItemPuchaseRequest>(); itemsToPurchase.Add(new ItemPuchaseRequest() { ItemId = StoreItem.ItemId, Quantity = 1 }); var startRequest = new StartPurchaseRequest() { StoreId = "ResizerItems", Items = itemsToPurchase, }; PlayFabClientAPI.StartPurchase(startRequest, (startResult) => { //Store the order and move to confirmation screen. PlayFabDataStore.Orders.Enqueue(startResult); WindowManager.SendEvent("Purchase"); }, PlayFabErrorHandler.HandlePlayFabError); }
/// <summary> /// Creates an order for a list of items from the title catalog /// </summary> public static void StartPurchase(StartPurchaseRequest request, StartPurchaseCallback resultCallback, ErrorCallback errorCallback) { if (AuthKey == null) throw new Exception ("Must be logged in to call this method"); string serializedJSON = JsonConvert.SerializeObject(request, Util.JsonFormatting, Util.JsonSettings); Action<string,string> callback = delegate(string responseStr, string errorStr) { StartPurchaseResult result = null; PlayFabError error = null; ResultContainer<StartPurchaseResult>.HandleResults(responseStr, errorStr, out result, out error); if(error != null && errorCallback != null) { errorCallback(error); } if(result != null) { if(resultCallback != null) { resultCallback(result); } } }; PlayFabHTTP.Post(PlayFabSettings.GetURL()+"/Client/StartPurchase", serializedJSON, "X-Authorization", AuthKey, callback); }
/// <summary> /// Creates an order for a list of items from the title catalog /// </summary> public static void StartPurchase(StartPurchaseRequest request, ProcessApiCallback<StartPurchaseResult> resultCallback, ErrorCallback errorCallback, object customData = null) { if (_authKey == null) throw new Exception("Must be logged in to call this method"); string serializedJson = SimpleJson.SerializeObject(request, Util.ApiSerializerStrategy); Action<CallRequestContainer> callback = delegate(CallRequestContainer requestContainer) { ResultContainer<StartPurchaseResult>.HandleResults(requestContainer, resultCallback, errorCallback, null); }; PlayFabHTTP.Post("/Client/StartPurchase", serializedJson, "X-Authorization", _authKey, callback, request, customData); }
/// <summary> /// Creates an order for a list of items from the title catalog /// </summary> public static async Task<PlayFabResult<StartPurchaseResult>> StartPurchaseAsync(StartPurchaseRequest request) { if (AuthKey == null) throw new Exception ("Must be logged in to call this method"); object httpResult = await PlayFabHTTP.DoPost(PlayFabSettings.GetURL() + "/Client/StartPurchase", request, "X-Authorization", AuthKey); if(httpResult is PlayFabError) { PlayFabError error = (PlayFabError)httpResult; if (PlayFabSettings.GlobalErrorHandler != null) PlayFabSettings.GlobalErrorHandler(error); return new PlayFabResult<StartPurchaseResult> { Error = error, }; } string resultRawJson = (string)httpResult; var serializer = JsonSerializer.Create(PlayFabSettings.JsonSettings); var resultData = serializer.Deserialize<PlayFabJsonSuccess<StartPurchaseResult>>(new JsonTextReader(new StringReader(resultRawJson))); StartPurchaseResult result = resultData.data; return new PlayFabResult<StartPurchaseResult> { Result = result }; }