Questions tagged [pecl-oauth]

PECL extension for OAuth 1.0

This extension implements an easy-to-use object oriented consumer and provider for OAuth 1.0

OAuth provides a method for clients to access server resources on behalf of a resource owner (such as a different client or an end-user). It also provides a process for end-users to authorize third-party access to their server resources without sharing their credentials (typically, a username and password pair), using user-agent redirections.

6 questions
8
votes
2 answers

PHP not loading http.so

I updated my Mac to OS X Mavericks (10.9) and have had to setup PHP again, along with PECL OAuth. When I verify my install with the command php -v, I am getting an error: PHP Warning: PHP Startup: Unable to load dynamic library…
rosst400
  • 563
  • 2
  • 7
  • 19
2
votes
0 answers

PHP Startup: Unable to load dynamic library /usr/lib/php/extensions/no-debug-non-zts-20100525/http.so Mac Maverick

For some reason my PHP CLI is not picking up my http.so file. I am on Mac Maverick. When I check my the directory '/usr/lib/php/extensions/no-debug-non-zts-20100525/http.so' I can see the file and I remember installing pecl_http. I also tried…
numerical25
  • 10,524
  • 36
  • 130
  • 209
1
vote
0 answers

pecl oauth - problem with request engine

I am trying to use pecl oauth $oauth = new OAuth($conskey,$conssec,OAUTH_SIG_METHOD_HMACSHA1,OAUTH_AUTH_TYPE_URI); but when a call to $oauth->setRequestEngine(OAUTH_REQENGINE_CURL) i am getting a warning that constant OAUTH_REQENGINE_CURL is a…
Andreas
  • 5,305
  • 4
  • 41
  • 60
1
vote
1 answer

Hybridauth Library not compatible with installed PECL OAuth extension

I try to login in my websites using Google API, in local it's working good. but on server it's given error. error is - "Got An Error - Hybridauth Library not compatible with installed PECL OAuth extension. Please disable it."
Neeraj Prajapati
  • 541
  • 5
  • 24
1
vote
0 answers

How to get oauth_verification using PECL OAUTH?

I'm trying to get the verification code using php, but as I can see, there is only "manual" (I have to authorize manually) solution for this. Is there any way to authorize your request token using pecl oauth? I see only getAccessToken and…
Norbert Kiss
  • 273
  • 1
  • 3
  • 15
1
vote
0 answers

Single-user PHP OAuth request using PECL

I'm trying to implement an api (The Noun Project), and they've provided this example: https://gist.github.com/hirobert/710f2e22ed803dc34cc0 I'd love to implement this using the OAuth PECL library I'm unfortunately getting stuck, since it doesn't…
onassar
  • 3,313
  • 7
  • 36
  • 58