Add username and password in ngrok.
This commit is contained in:
parent
ac08562854
commit
2505f39e28
1 changed files with 10 additions and 2 deletions
|
@ -1,13 +1,21 @@
|
||||||
from pyngrok import ngrok, conf, exception
|
from pyngrok import ngrok, conf, exception
|
||||||
|
|
||||||
|
|
||||||
def connect(token, port, region):
|
def connect(token, port, region):
|
||||||
if token == None:
|
if token == None:
|
||||||
token = 'None'
|
token = 'None'
|
||||||
|
else:
|
||||||
|
if ':' in token:
|
||||||
|
# token = authtoken:username:password
|
||||||
|
account = token.split(':')[1] + ':' + token.split(':')[-1]
|
||||||
|
token = token.split(':')[0]
|
||||||
|
|
||||||
config = conf.PyngrokConfig(
|
config = conf.PyngrokConfig(
|
||||||
auth_token=token, region=region
|
auth_token=token, region=region
|
||||||
)
|
)
|
||||||
try:
|
try:
|
||||||
|
if account:
|
||||||
|
public_url = ngrok.connect(port, pyngrok_config=config, auth=account).public_url
|
||||||
|
else:
|
||||||
public_url = ngrok.connect(port, pyngrok_config=config).public_url
|
public_url = ngrok.connect(port, pyngrok_config=config).public_url
|
||||||
except exception.PyngrokNgrokError:
|
except exception.PyngrokNgrokError:
|
||||||
print(f'Invalid ngrok authtoken, ngrok connection aborted.\n'
|
print(f'Invalid ngrok authtoken, ngrok connection aborted.\n'
|
||||||
|
|
Loading…
Reference in a new issue