oauth-4-laravel icon indicating copy to clipboard operation
oauth-4-laravel copied to clipboard

OAuth Service Provider for Laravel 4

Results 101 oauth-4-laravel issues
Sort by recently updated
recently updated
newest added

I have a problem My code: ` public function importGmail() { $code = Request::get('code'); $googleService = \OAuth::consumer('Google'); if(!is_null($code)) { $token = $googleService->requestAccessToken($code); $result = json_decode($googleService->request('https://www.google.com/m8/feeds/contacts/default/full?alt=json&max-results=400'), true); $emails = []; //...

Hello, make a new repository oauth-5-laravel and use this first commit as a master branch. I tested facebook, google for now

Is it possible to obtain access to the Access Token? I'm working on a project where I need to pass off the access token to my teammate who is working...

Hi, I have an access token for a user saved in the DB, and wanted to make an API request on their behalf. I understand I can append the 'access_token'...

I've been using OAuth for a long time, and recently there's been a problem with Yahoo OAuth, I'm getting Call to undefined method OAuth\OAuth2\Service\Yahoo::requestRequestToken() I'm using the exact code that...

Hi! Sometimes I have problems with the Facebook Login. Then I get the following message: Message: Undefined index: access_token [] [] exception 'ErrorException' with message 'Undefined index: access_token' in .../vendor/lusitanian/oauth/src/OAuth/OAuth2/Service/Facebook.php:171...

Hi, I have configured this package with laravel 4.2.17. When i am trying to create login with facebook i am getting an error "Call to a member function getAuthorizationUri() on...

Hello! Is there any information on if/when this package will be Laravel 5 compatible?

Please i keep getting an error when requesting for request token for twitter. Below is the error. `Failed to request resource. HTTP Code: HTTP/1.1 401 Authorization Required` I used the...

Please help me, it is only returning the name and the ID for Facebook and all the user information except for the email in twitter. I've been trying to use...