0
I am developing an application with the Laravel framework along with the instagram api and I have reached an impasse: in a given routine, I get a redirect that returns the login to my application, but the problem is that in this redirection comes an important data to be used in the application but it comes in this format that I cannot use: "http://localhost:8000/insta#access_token=dado_que_eu_preciso".
I tried to use Laravel’s own route mechanism to try to get this data but I was not successful. Someone would help me?
Specify your problem better, post parts of your code, where are you hitting that url? Does it all come from the api? insta#access_token=dado_que_eu_preciso
– arllondias
The url is from the api. After allowing my site access to the instagram data, the site itself makes this redirect with access_token
– adrianosmateus