Skip to content

Commit

Permalink
Fixed redirect_uri
Browse files Browse the repository at this point in the history
  • Loading branch information
JulianFun123 committed Jun 10, 2021
1 parent 90ad1c2 commit c269197
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ public String build(){
+"/auth/oauth2"
+"?client_id="+encodeUrl(clientId)
+"&scope="+encodeUrl(String.join(" ", scopes))
+(redirectUri == null ? "" : "&redirect_url="+encodeUrl(redirectUri))
+(redirectUri == null ? "" : "&redirect_uri="+encodeUrl(redirectUri))
+(state == null ? "" : "&state="+encodeUrl(state));
}
}
Expand Down

0 comments on commit c269197

Please sign in to comment.