Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Using IP restricting API's on Heroku

A third party API that we are using restricts access based on IP address. Since there is no dedicated IP for a heroku app, what is the optimal solution?

like image 484
Patm Avatar asked Feb 25 '23 13:02

Patm


1 Answers

Get another server that you can control the IP on (like an EC2 instance) and then route your requests through that.

Or, talk with the API provider about modifying their access controls.

like image 140
Mitch Dempsey Avatar answered Mar 07 '23 18:03

Mitch Dempsey