Ben bir Twitter uygulaması üzerinde çalışıyorum. OAuth dokümantasyon ve mevcut komut geçerek benim geri uri için kullanıcıyı yönlendirmek mümkün ve kullanıcı erişim nesnesi alıyorum.
$connection = new TwitterOAuth(CONSUMER_KEY, CONSUMER_SECRET);
/* Get temporary credentials. */
$request_token = $connection->getRequestToken(OAUTH_CALLBACK);
What I understood is this is a permanent access object generated by twitter authorizing my app with this user. Do I need to save it in DB for further use. Is there any legal implications if I store user data.
Benim anlayış bizim DB nesneyi depolamak ve daha sonra ne zaman kullanıcı oturum dahaki sefere kullanmak zorunda olmasıdır.
Can anyone confirm if this is the right approach. -Anand