GS: RECV:{"@class":".AuthenticationResponse","error":{"steamTicket":"NOTAUTHENTICATED","steamError":"{ \"response\" : { \"error\" : { \"errorcode\" : 102 , \"errordesc\" : \"Ticket for other app\"}}}"},"newPlayer":false,"requestId":"636451419032343153_0"}
how i getting ticket
public static string GetAuthSessionTicket() {
byte[] ticketBlob = new byte[1024];
uint ticketSize;
// Retrieve ticket; hTicket should be a field in the class so you can use it to cancel the ticket later
// When you pass an object, the object can be modified by the callee. This function modifies the byte array you've passed to it.
hTicket = SteamUser.GetAuthSessionTicket(ticketBlob, ticketBlob.Length, out ticketSize);
// Resize the buffer to actual length
Array.Resize(ref ticketBlob, (int)ticketSize);
// Convert bytes to string
StringBuilder sb = new StringBuilder();
foreach (byte b in ticketBlob) {
sb.AppendFormat("{0:x2}", b);
}
string hexTicket = sb.ToString();
Debug.Log("[STEAM] hexTicket == " + hexTicket);
return hexTicket;
}
What im doing wrong?
Best Answer
C
Customer Support
said
over 5 years ago
Hi Alexey,
So the problem here was the Steam app not being functional until now ? The SteamConnectRequests are working as expected now ?
So the problem here was the Steam app not being functional until now ? The SteamConnectRequests are working as expected now ?
Regards,
Liam
1 person likes this
A
Alexey Borisov
said
over 5 years ago
i call SteamUser.BeginAuthSession with this ticket - its works correctly. Why GameSparks have response error from steam?
A
Alexey Borisov
said
over 5 years ago
Test Harness -
Ticket for other app
A
Alexey Borisov
said
over 5 years ago
After 5 hours after the project was created in steam - the error has ceased to appear Resolve
G
Geri Borbás
said
over 4 years ago
I have the same problem. Ticket is reported fine (EBeginAuthSessionResult.k_EBeginAuthSessionResultOK), still, GameSparks returns with Ticket for other app.
G
Geri Borbás
said
over 4 years ago
I have the same problem. Ticket is reported fine (EBeginAuthSessionResult.k_EBeginAuthSessionResultOK), still, GameSparks returns with "Ticket for other app" (code 102).
Alexey Borisov
SteamConnectRequest
how i getting ticket
What im doing wrong?
Hi Alexey,
So the problem here was the Steam app not being functional until now ? The SteamConnectRequests are working as expected now ?
Regards,
Liam
- Oldest First
- Popular
- Newest First
Sorted by PopularCustomer Support
Hi Alexey,
So the problem here was the Steam app not being functional until now ? The SteamConnectRequests are working as expected now ?
Regards,
Liam
1 person likes this
Alexey Borisov
i call SteamUser.BeginAuthSession with this ticket - its works correctly. Why GameSparks have response error from steam?
Alexey Borisov
Test Harness -
Ticket for other app
Alexey Borisov
After 5 hours after the project was created in steam - the error has ceased to appear
Resolve
Geri Borbás
I have the same problem. Ticket is reported fine (EBeginAuthSessionResult.k_EBeginAuthSessionResultOK), still, GameSparks returns with Ticket for other app.
Geri Borbás
I have the same problem. Ticket is reported fine (EBeginAuthSessionResult.k_EBeginAuthSessionResultOK), still, GameSparks returns with "Ticket for other app" (code 102).
Alexey Borisov
All right
-
Documentation Notes
-
Design issues with user events
-
Using NoSQL
-
Runtime Collections vs Metadata Collections
-
Anonymous authentication from browser app
-
Modules
-
Movement With Unity
-
Problem with url parameters for downloadables
-
Querying NoSql GameSparks database
-
Challenge accesType
See all 2487 topics