Inheritance: PlayFabRequestCommon
Beispiel #1
0
		/// <summary>
		/// Adds the specified items to the specified user's inventory
		/// </summary>
		public static void GrantItemsToUser(GrantItemsToUserRequest request, GrantItemsToUserCallback resultCallback, ErrorCallback errorCallback)
		{
			if (PlayFabSettings.DeveloperSecretKey == null) throw new Exception ("Must have PlayFabSettings.DeveloperSecretKey set to call this method");

			string serializedJSON = JsonConvert.SerializeObject(request, Util.JsonFormatting, Util.JsonSettings);
			Action<string,string> callback = delegate(string responseStr, string errorStr)
			{
				GrantItemsToUserResult result = null;
				PlayFabError error = null;
				ResultContainer<GrantItemsToUserResult>.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()+"/Server/GrantItemsToUser", serializedJSON, "X-SecretKey", PlayFabSettings.DeveloperSecretKey, callback);
		}
Beispiel #2
0
 private Action GrantUserItem(string itemId)
 {
     Action output = () =>
     {
         var grantRequest = new ServerModels.GrantItemsToUserRequest();
         grantRequest.PlayFabId = pfLoginExample.playFabId;
         grantRequest.ItemIds = new List<string>() { itemId };
         PlayFabServerAPI.GrantItemsToUser(grantRequest, GrantUserItemCallback, SharedFailCallback("GrantItemsToUser"));
     };
     return output;
 }
Beispiel #3
0
		/// <summary>
		/// Adds the specified items to the specified user's inventory
		/// </summary>
        public static async Task<PlayFabResult<GrantItemsToUserResult>> GrantItemsToUserAsync(GrantItemsToUserRequest request)
        {
            if (PlayFabSettings.DeveloperSecretKey == null) throw new Exception ("Must have PlayFabSettings.DeveloperSecretKey set to call this method");

            object httpResult = await PlayFabHTTP.DoPost(PlayFabSettings.GetURL() + "/Server/GrantItemsToUser", request, "X-SecretKey", PlayFabSettings.DeveloperSecretKey);
            if(httpResult is PlayFabError)
            {
                PlayFabError error = (PlayFabError)httpResult;
                if (PlayFabSettings.GlobalErrorHandler != null)
                    PlayFabSettings.GlobalErrorHandler(error);
                return new PlayFabResult<GrantItemsToUserResult>
                {
                    Error = error,
                };
            }
            string resultRawJson = (string)httpResult;

            var serializer = JsonSerializer.Create(PlayFabSettings.JsonSettings);
            var resultData = serializer.Deserialize<PlayFabJsonSuccess<GrantItemsToUserResult>>(new JsonTextReader(new StringReader(resultRawJson)));
			
			GrantItemsToUserResult result = resultData.data;
			
			
            return new PlayFabResult<GrantItemsToUserResult>
                {
                    Result = result
                };
        }