public void LogCustomEvent(string eventName, Dictionary<string,object> body) { PlayFab.ClientModels.LogEventRequest request = new LogEventRequest (); request.eventName = eventName; request.Body = body; if (PlayFabData.AuthKey != null) PlayFabClientAPI.LogEvent (request, EventLogged, OnPlayFabError); }
/// <summary> /// Logs a custom analytics event /// </summary> public static void LogEvent(LogEventRequest request, LogEventCallback 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) { LogEventResult result = null; PlayFabError error = null; ResultContainer<LogEventResult>.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/LogEvent", serializedJSON, "X-Authorization", AuthKey, callback); }
/// <summary> /// Logs a custom analytics event /// </summary> public static void LogEvent(LogEventRequest request, ProcessApiCallback<LogEventResult> 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<LogEventResult>.HandleResults(requestContainer, resultCallback, errorCallback, null); }; PlayFabHTTP.Post("/Client/LogEvent", serializedJson, "X-Authorization", _authKey, callback, request, customData); }
/// <summary> /// Logs a custom analytics event /// </summary> public static async Task<PlayFabResult<LogEventResult>> LogEventAsync(LogEventRequest request) { if (AuthKey == null) throw new Exception ("Must be logged in to call this method"); object httpResult = await PlayFabHTTP.DoPost(PlayFabSettings.GetURL() + "/Client/LogEvent", request, "X-Authorization", AuthKey); if(httpResult is PlayFabError) { PlayFabError error = (PlayFabError)httpResult; if (PlayFabSettings.GlobalErrorHandler != null) PlayFabSettings.GlobalErrorHandler(error); return new PlayFabResult<LogEventResult> { Error = error, }; } string resultRawJson = (string)httpResult; var serializer = JsonSerializer.Create(PlayFabSettings.JsonSettings); var resultData = serializer.Deserialize<PlayFabJsonSuccess<LogEventResult>>(new JsonTextReader(new StringReader(resultRawJson))); LogEventResult result = resultData.data; return new PlayFabResult<LogEventResult> { Result = result }; }