php - laravel - get value from url -
i know might off question or can duplicate after searching lot decided post question. using socialite laravel , still newbie it. decided have twitter login. did @ last didn't know how values such oauth_verifier
, oauth_token
variable url
example.com/callback?oauth_token=xyz&oauth_verifier=123
.
i want check values. have tried using \input::get('oauth_verifier')
, isset($_get('oauth_verifier'))
didn't output each time. please help.
there function user()
gives possible values can socialize. try this
$user = socialize::with('twitter')->user(); dd($user);
Comments
Post a Comment