-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How do I save Access token and secret for future use? #11
Comments
It's automatic but it's depend on the expiration of the token. Some tokens have expiration time some not. All tokens for a connected user is stored and when the user isn't connected. You ask for a new token or to recognize an existing token. Is that clear ? |
I understand, but I am trying to store the access token in my backend server for further connecting which has no interaction with user. So my frontend server will get the access token and do its own thing, then send the access token to my backend server for them to do more connecting. |
If you always need help sorry for the wait :D ! For the same connection (project) which share the same tables, if you have store tokens you can use in all of your applications. |
I think what savannahbeckett was getting at is possible the same thing I am trying to figure out how to do. I want a way to delay the creation of a user until the visitor has completed a further details registration form. So the user has the option of signing up with facebook connect or without.
How would i go about doing this? |
I don't want my web application to ask user to grant access every hour. How do I save the ACCESS GET request for future use and save it to database? or can I save the access token and secret into the database? If so, what function should I call?
Thanks.
The text was updated successfully, but these errors were encountered: