Closed (won't fix)
Project:
Drupal.org security advisory coverage applications
Component:
module
Priority:
Normal
Category:
Task
Assigned:
Unassigned
Reporter:
Created:
9 Feb 2013 at 18:04 UTC
Updated:
15 Jul 2015 at 12:23 UTC
Jump to comment: Most recent
Comments
Comment #1
aw030 commentedReview:
*Automated review: not passed without errors...
*Manual review:
- Install a fresh drupal 7 (localhost)
- Move the module folder to sites/all/modules
- Install required modules (ctools/services/fboauth)
- Install module
- go to /admin/structure/services
- Result as expected.
-------------------
tips:
- You must move from a master branch to a version branch
- LICENSE.txt must be removed
- "version" from the ./fboauth_services.info file must be removed
Comment #2
klausiWe are currently quite busy with all the project applications and I can only review projects with a review bonus. Please help me reviewing and I'll take a look at your project right away :-)
Comment #3
utneon commentedI will help with that later, I'm currently very busy developing modules for Drupal solutions and I will update the modules I'm submitting as soon as possible as my contribution. I'm going to release a very interesting new module in a few minutes which is working just fine but may need some help reviewing. I will post it for review anyway. Thank you very much for your review and feedback!
Comment #4
Anonymous (not verified) commentedManual code review:
if(user_is_logged_in())to perform the check. Just to adhere to existing functions... :)Keep up the good work!
Comment #5
klausiThere are some errors reported by automated review tools, did you already check them? See http://ventral.org/pareview/httpgitdrupalorgsandboxutneon1903856git
Comment #6
PA robot commentedClosing due to lack of activity. Feel free to reopen if you are still working on this application.
I'm a robot and this is an automated message from Project Applications Scraper.
Comment #7
gregoiremotot commentedI had problem with email.
When I try to register on /[endpoint]/fboauth/connect with fb access_token, I didn't get email of user.
POST :
/[endpoint]/fboauth/connect
params :
access_token = "CA...LZC"
To fix it :
I change in file fboauth_services.module (line 52) :
$fbuser = fboauth_graph_query('me', $access_token);
to
$fbuser = fboauth_graph_query('me?fields=id,name,email', $access_token);
after I get email when I register.
On more tips, you need to put fboauth_services.module and fboauth_services.info in folder fboauth
Thanks for this module ! :)