You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to set up access to FLickr. I used your example routing in my Laravel application and set the return callback path on my application to http://mysite.com/gallery/create_callback but I keep getting this error:Unsupported or undefined Opauth strategy - gallery . I look all over the application and don't see where else I could possibly change it. Thanks!
I update and published the config file:
// OAuth paths
//////////////////////////////////////////////////////////////////////
OpAuth is parsing your current URL to create the "OpAuth strategy", if you move your code to the root of the website, it will work. The "gallery" keyword is the name of your subfolder.
I am trying to set up access to FLickr. I used your example routing in my Laravel application and set the return callback path on my application to http://mysite.com/gallery/create_callback but I keep getting this error:Unsupported or undefined Opauth strategy - gallery . I look all over the application and don't see where else I could possibly change it. Thanks!
I update and published the config file:
// OAuth paths
//////////////////////////////////////////////////////////////////////
My Routes:
Route::post('/gallery/create', function() {
Flickering::handshake();
return Flickering::getOpauth();
});
Route::any('/gallery/create_callback', function() {
Flickering::handshake();
if(Request::getMethod() == 'POST'){
Flickering::getOpauthCallback();
return 'Authenticated!';
}else{
Flickering::getOpauth();
return 'Being redirected..';
}
});
The text was updated successfully, but these errors were encountered: