Unverified Commit 1a01191e authored by JingShing's avatar JingShing Committed by GitHub
Browse files

Add username and password in ngrok.

parent 2505f39e
Loading
Loading
Loading
Loading
+4 −3
Original line number Original line Diff line number Diff line
from pyngrok import ngrok, conf, exception
from pyngrok import ngrok, conf, exception


def connect(token, port, region):
def connect(token, port, region):
    account = None
    if token == None:
    if token == None:
        token = 'None'
        token = 'None'
    else:
    else:
@@ -13,10 +14,10 @@ def connect(token, port, region):
        auth_token=token, region=region
        auth_token=token, region=region
    )
    )
    try:
    try:
        if account:
        if account == None:
            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
        else:
            public_url = ngrok.connect(port, pyngrok_config=config, auth=account).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'
              f'Your token: {token}, get the right one on https://dashboard.ngrok.com/get-started/your-authtoken')
              f'Your token: {token}, get the right one on https://dashboard.ngrok.com/get-started/your-authtoken')