• Hi I am trying to implement this to work with GroupMe

    There is a relevant GroupMe support article here: https://dev.groupme.com/tutorials/oauth

    Groupme uses Oauth2 Implicit Grant, I’m pretty new to PHP and Oauth, I tried making a child class in includes/services/extended/ that used this. Then trying to set up the GroupMe service would take me to their oauth login, then redirect me back to my callback url https://MY_WORDPRESS_URL/wp-admin/tools.php?page=keyring&action=verify&service=groupme%3Fstate%3D13&code=ACCESS_TOKEN, but it would just be a blank page.

    Is it possible to create a class for Groupme that can use Implicit Grant, or is the core function of this plugin not designed to support Implicit Grant? I know its not the greatest but I’d like to use Groupme to authenticate on my site.

Viewing 1 replies (of 1 total)
  • Plugin Author Beau Lebens

    (@beaulebens)

    Can you perhaps post the code that you’ve come up with so far? And do you get any errors in your server logs? You might also want to turn on Keyring’s debugging mode to get much more verbose errors

    define( 'KEYRING__DEBUG_MODE', true );

    I’ve never tried implementing an Implicit grant, and it’s not actually recommended any more for services to use it, but if the token is returned in the URL then I think we should probably be able to get it out and use it.

Viewing 1 replies (of 1 total)
  • The topic ‘Possible to do Implicit Grant?’ is closed to new replies.