mirror of
https://codeberg.org/StreamGraph/StreamGraph.git
synced 2024-11-13 19:49:55 +01:00
Implemented Redirect Port fully
This commit is contained in:
parent
9b22f6b5c0
commit
3c40c1da66
1 changed files with 1 additions and 1 deletions
|
@ -86,7 +86,7 @@ func create_auth_url(scopes : Array[String] = ["chat:read", "chat:edit"], port :
|
|||
str_scopes += " " + all
|
||||
str_scopes = str_scopes.strip_edges()
|
||||
|
||||
var url = twitch_url + "client_id=" + id + "&redirect_uri=" + redirect + "&scope=" + str_scopes + "&state=" + str(state)
|
||||
var url = twitch_url + "client_id=" + id + "&redirect_uri=" + redirect + ":" + port + "&scope=" + str_scopes + "&state=" + str(state)
|
||||
|
||||
return url
|
||||
|
||||
|
|
Loading…
Reference in a new issue