Reputation: 10956
How to install the oauth in php. Can any one provide me the full description, links and all the libraries. I tried from here but I could not understand
I want to access the oauth token by the following code
$oauth = new OAuth(API_CONSUMER_KEY, API_CONSUMER_SECRET);
but this is not working because php extension for oauth is not installed
Upvotes: 3
Views: 14122
Reputation: 64
Note: For windows you should have compiled file. (.dll file of extension)
Upvotes: 0
Reputation: 1601
You can find the correct dll files here
Make sure you select the correct file on the following factors:
You can find these info using php_info(); of your server.
Upvotes: 0
Reputation:
Yup, u need this file php_oauth.dll (windows)
Put into
/bin/php[version]/ext
And you need to change php.ini to load oauth (Dynamic Extensions)
extension=php_oauth.dll
Upvotes: 5