I am using artdarek/oauth-4-laravel for OAuth.
Twitter's Api v1.1 has some nodes which can be accessed using only application id & secret, without user authenticationn /user/show
is one of then.
I am unable to make a request
$twitter = OAuth::consumer( 'Twitter' );
$twitter = $twitter->request( '/1.1/users/show.json?screen_name=xxYYzz' );
// throws : OAuth \ Common \ Storage \ Exception \ TokenNotFoundException
Any idea on how to make the request ?
An example of how can I do this would be appreciated. ThankX
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community