Comments on: Login with Twitter using PHP https://www.codexworld.com/login-with-twitter-using-php/ Web & Mobile App Development Company Sun, 13 Nov 2022 06:57:17 +0000 hourly 1 By: Nexus https://www.codexworld.com/login-with-twitter-using-php/comment-page-1/#comment-154183 Wed, 13 Oct 2021 13:52:33 +0000 https://www.codexworld.com/?p=68#comment-154183 How to get “statuses_count” (total amount of Tweets)?

]]>
By: CodexWorld https://www.codexworld.com/login-with-twitter-using-php/comment-page-1/#comment-74858 Wed, 09 Jan 2019 18:14:41 +0000 https://www.codexworld.com/?p=68#comment-74858 In reply to Firoz Ansari.

We have already published the Twitter Login for CodeIgniter, see the tutorial from here – https://www.codexworld.com/twitter-login-codeigniter/

]]>
By: Firoz Ansari https://www.codexworld.com/login-with-twitter-using-php/comment-page-1/#comment-74842 Wed, 09 Jan 2019 11:55:36 +0000 https://www.codexworld.com/?p=68#comment-74842 Hi, Thanks for this post. It is very useful. Please create an article for integrating with CodeIgniter framework also. Thank you

]]>
By: yahya almohajire https://www.codexworld.com/login-with-twitter-using-php/comment-page-1/#comment-53448 Fri, 19 Jan 2018 00:45:39 +0000 https://www.codexworld.com/?p=68#comment-53448 hi CodexWorld
tnx for amazing script .
plz Can you tell me how to save user Access Token and user Access Token Secret to db

]]>
By: CodexWorld https://www.codexworld.com/login-with-twitter-using-php/comment-page-1/#comment-48700 Mon, 07 Aug 2017 19:21:45 +0000 https://www.codexworld.com/?p=68#comment-48700 In reply to sayali kadam.

The source code contains all the required files including OAuth.php and twitterOAuth.php, download the source code.

]]>
By: sayali kadam https://www.codexworld.com/login-with-twitter-using-php/comment-page-1/#comment-48692 Mon, 07 Aug 2017 11:52:52 +0000 https://www.codexworld.com/?p=68#comment-48692 where are the files of library OAuth.php and twitterOAuth.php?

]]>
By: CodexWorld https://www.codexworld.com/login-with-twitter-using-php/comment-page-1/#comment-47361 Sun, 25 Jun 2017 17:36:41 +0000 https://www.codexworld.com/?p=68#comment-47361 In reply to Mr ShyAm.

Please follow the instruction given in Getting User Email from Twitter Account section of the tutorial.

]]>
By: Mr ShyAm https://www.codexworld.com/login-with-twitter-using-php/comment-page-1/#comment-47336 Sat, 24 Jun 2017 09:39:14 +0000 https://www.codexworld.com/?p=68#comment-47336 Thanks @CodexWorld for reply.
One more thiing..
I want to save twitter account email id in database. so what code I have to change.

]]>
By: CodexWorld https://www.codexworld.com/login-with-twitter-using-php/comment-page-1/#comment-47334 Sat, 24 Jun 2017 09:16:35 +0000 https://www.codexworld.com/?p=68#comment-47334 In reply to Mr ShyAm.

In twConfig.php file, replace session_start(); with the following code.

if(!session_id()){
    
session_start();
}
]]>
By: Mr ShyAm https://www.codexworld.com/login-with-twitter-using-php/comment-page-1/#comment-47309 Fri, 23 Jun 2017 12:10:02 +0000 https://www.codexworld.com/?p=68#comment-47309 Its showing A session had already been started in twConfig.php on line 2
when i run it and value does not inserted into database.

]]>