Is it possible to login via OAuth ?
See original GitHub issueGeneral Question
Read the Notes and fill out the form.
Switch to Preview
for reading.
Notes
Your issue will be closed if you violate any rule below.
- You need to include a meaningful descriptions and e.g. a screenshot.
- You do not include screenshots of your code.
- Read the Docs.
- Capturing endpoints and similar can be found here (read it if you are going to ask about it).
- You can delete this section after reading it.
Form
Put an [x]
if you meet the condition, else leave [ ]
.
- I’ve searched the Issues
- I’ve read the basic concepts
- I’m using the latest version
Question
A specific question, so it’s understandable to anyone. You may add pictures.
I am developing an Progressive Web Application , by part of this App ,user is able to search an Instagram page and fetch all public info about page ( followers, following , bio, …) , Since this app will have a lot of users, if a lot of user call to back-end at the same time and back-end code call to Instagram private api based on one specific account then Instagram platform will banded this account , so I am ganna to know that is it possible to force user Login in through Instagram OAuth and when user received access token then we use this Token for login and fetch data from Instagram directly on client side?
Issue Analytics
- State:
- Created 4 years ago
- Comments:5
Top GitHub Comments
There are other issues on React Native. I don’t know it enough to give recommendations.
Unfortunately this isn’t possible. The regular API works that way but not the API used in the app which uses cookies to authenticate. If you’re dealing with multiple users in one IP it’s recommend to use proxies or to make the requests on the client side (only possible in node or add-ons due to CORS).