Skip to content
This repository was archived by the owner on Oct 24, 2021. It is now read-only.

Commit 7b9425d

Browse files
authored
Merge pull request #115 from Jaren8r/main
Fix authentication error
2 parents a2d11ef + b88afc0 commit 7b9425d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Authentication.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public static void GetAuthorization(CookieContainer jar)
2222
};
2323

2424
RestRequest request = new RestRequest(Method.POST);
25-
string body = "{\"client_id\":\"play-valorant-web-prod\",\"nonce\":\"1\",\"redirect_uri\":\"https://beta.playvalorant.com/opt_in" + "\",\"response_type\":\"token id_token\",\"scope\":\"account openid\"}";
25+
string body = "{\"client_id\":\"play-valorant-web-prod\",\"nonce\":\"1\",\"redirect_uri\":\"https://playvalorant.com/opt_in" + "\",\"response_type\":\"token id_token\",\"scope\":\"account openid\"}";
2626
request.AddJsonBody(body);
2727
client.Execute(request);
2828
}

0 commit comments

Comments
 (0)