Questions tagged [ngrok]

ngrok provides HTTPS tunnels from the Internet to local machines with the ability to capture and replay traffic.

ngrok is a tunneling, reverse proxy that establishes secure tunnels from a public endpoint to a locally running network service while capturing all traffic for inspection and replay.

Useful links:

999 questions
0
votes
1 answer

Ngrok Server failed to allocate tunnel: Invalid authtoken your-token

Unable to tunnel using ngrok. Getting below error. Server failed to allocate tunnel: Invalid authtoken your-token Anyone faced this issue ?
Mithun
  • 67
  • 1
  • 7
0
votes
2 answers

Facebook Authentication Problems with Ngrok and Meteor

I'm trying to test my meteor app, which uses Facebook-based login integration, locally rather than deploy it continuously. To do this, I've set up ngrok to tunnel to my localhost on port 3000, where my local meteor server is deployed. The server is…
mjkaufer
  • 4,047
  • 5
  • 27
  • 55
0
votes
1 answer

Django : Hellosignup callback url not coming to view

I have registered a app at Hellosign and using locally for a django project. While restringing the app it required the domain url for OAuth callbacks since i'm using the localhost, i have given a callback url genereated by https://ngrok.com/. like:…
navyad
  • 3,752
  • 7
  • 47
  • 88
0
votes
1 answer

Auth on ngrok event not found

I'm trying to auth on ngrok: aaas-iMac:sss aaa$ ~/ngrok -authtoken bbtw942UevV!Ap94JzFz 80 -bash: !Ap94JzFz: event not found What's with this? How do I auth? Thanks.
Harry
  • 52,711
  • 71
  • 177
  • 261
-1
votes
1 answer

ssh to ngrok errors with Connection Refused on macbook

On my macbook, I'm unable to ssh into my ngrok instance, with the following error: MacBook-Air:~ $ ssh -v USER@tcp://0.tcp.ap.ngrok.io -p 66666 OpenSSH_9.0p1, LibreSSL 3.3.6 debug1: Reading configuration data /etc/ssh/ssh_config debug1:…
oliffur
  • 35
  • 4
-1
votes
0 answers

Seeking Alternatives to Ngrok for Static Domain Tunneling

I am currently in search of a reliable alternative to Ngrok that supports static domain tunneling. I have already experimented with playit.gg; however, I encountered issues with lag and the inability to host websites. Unlike Ngrok, which dynamically…
-1
votes
1 answer

ngrok - how to create a link which has /___ after it

I am looking to use ngrok to host my local server to show a colleague. My issue is that my server URL is like so http://localhost:8080/viewer/ I've tried ngrok http 8080/viewer but that is throwing an error ERROR: Tunnel 'command_line' specifies an…
-1
votes
2 answers

How can I make my site available in specific countries or block some of them?

I own a html website page and show it to my clients with ngrok. But unfortunately, my page is being leaked outside and to other people. then my information is being stolen So I do not want my page to appear except in limited countries, so that if…
-1
votes
1 answer

Calendly Webhooks not working in node.js and ngrok?

This is my first time posting in Stack Overflow so please pardon me if there are any issues with my question. I am trying out Calendly Teams version and using the Webhooks feature on a Node.js web application. Here is the…
-1
votes
1 answer

How to make website available on google search using ngrok?

I tried to make my website offline and available on google search but I am using ngrok with is the url is variable and always change when run the program. how can I make the website url fixed by using ngrok coding? I need the fixed url because need…
Sanjiro
  • 13
  • 1
  • 4
-1
votes
1 answer

Twilio Whatsapp chatbot no response

I am trying to create a connection to whatsapp and my python script via Twilio, to generate automatic conversations. I follow every step in order of this link…
-1
votes
1 answer

Cannot add Ngrok command in Dockerfile

I'm trying to add RUN ngrok config add-authoken command in Dockerfile. From the error output, it seems like ngrok config command itself is working fine but for some reason it's not recognizing the add-authtoken part. My Dockerfile: FROM node:16 ARG…
passionateLearner
  • 722
  • 1
  • 7
  • 19
-1
votes
1 answer

Connect to ADB with ngrok and reverse tcp

I have an Android device at home that I use to develop on, and I'm connecting to it through my laptop with adb and scrcpy. However, if I'm not home adb doesn't see the device. I made an apk for the device with msfvenom for reverse tcp like…
-1
votes
1 answer

Port of discord.js bot/application?

I think the answer is pretty simple, but for some reason I can't figure it out. I recently created a discord bot following the official discord docs (build on top of expressJS). That worked out without problems. Now, I wanted to switch to the…
DaveExotic
  • 115
  • 7
-1
votes
1 answer

React frontend cannot communicate with Spring Boot backend because of CORS policy

I have exposed two services with ngrok to the internet with the following example url's: frontend.eu.ngrok.io (React application) backend.ru.ngrok.io (Spring Boot application with Kotlin) The frontend tries to make an axios request to the backend…