-
-
Notifications
You must be signed in to change notification settings - Fork 9.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support google XOAUTH2 authentication Issues #350 - Added Code #421
Conversation
This is great, thanks for getting into it, it's been wanted for a while. There are some issues...
|
Thanks for the feedback Synchro. I will try making changes according to your feedback and get back to you ASAP. |
|
Thanks for doing that. I've rebased your fork to skip all those external files, cleaned up the code a bit, added some minor documentation mentions and pushed it into the xoauth branch. I renamed the oauth subclass to |
Everything seems to be absolutely fine. Please note the below
|
I've done a load more cleanup, actually got it working, and have written a guide to how to set up an OAuth client ID in the wiki. I renamed the |
Forgive me for jumping in here, but I'm willing to test. I'm probably not the most adept, but I've already run across one issue - I can't seem to find the "vendor" directory in the xaouth branch. So get_oauth_token.php fails. |
Great. @fstfrognation, meet composer. You need to run |
Thanks - told you I probably wasn't very adept. I'll play with this as
On Mon, Jun 1, 2015 at 2:32 AM, Marcus Bointon [email protected]
|
Hi, All seems to be working very well, I have been able to use it after some initial headaches with composer. The only real issue I had was that the file examples/gmail_oauth.phps probably needs to be updated... need to prepend "oauth" before the OAuth specific variables. $mail->UserEmail ... should be $mail->oauthUserEmail Its correctly documented in your great set of directions on the wiki, just the examples directory wasn't updated. Another cosmetic issue, I haven't been able to track down yet, but will get there sooner or later... During $mail->send() it echo's a spurious oauthUserEmail right before/during the client to server communication settting AUTH to XOAUTH2
|
That's just the kind of thing I was looking for! All those issues are fixed in the xoauth branch now. |
Hi Synchro, |
Not sure how we can get more help - I've added the 'help needed' label. Could try tweeting about it. @fstfrognation is it working ok for you now? |
Sorry - I thought I had commented earlier - but obviously I didn't - sorry about that. Everything is working perfectly now. I've been using it for the past 5-6 weeks without any problems. I haven't found anything else new to report back. Usage, error messages, and performance all seem great to me.
|
Just for the record: I tried to follow But i followed the instructions given in: |
@alexplusde That makes no sense - that article is doing exactly the same thing using nodemailer in node.js, and so is not usable in PHP. |
I just talked about getting the refresh token part. Anyway, thanks for the effort, the wiki pages and examples really helped a lot. |
Ah, ok I see what you mean, point taken. Given that the process for obtaining the refresh token depends on the same libraries as using the token, it's unlikely that auth will work if obtaining the token doesn't. I would expect that obtaining the token via the playground is less secure than doing it yourself as it means the signing process is not happening under your control or on your server. |
This has been merged in manually and released in 5.2.11 - thanks for all your work. |
Hii @Synchro, |
Ok, so please go ahead and update it; The wiki is open to edits. |
Thank you.
|
Well, did you add that dependency as the composer config suggests and the docs say? |
Yes, I did.
|
everything worked fine after running |
Right, that's why it's in the composer suggest list. It doesn't suggest |
Support For Google XOAUTH2 Added - OAUTH2 External Library requires >=PHP5.4 & Guzzle
To begin, obtain OAuth 2.0 client credentials from the Google Developers Console. Then your client application requests an access token from the Google Authorization Server, extracts a token from the response, and sends the token to the Google API that you want to access.
More Info : https://developers.google.com/identity/protocols/OAuth2
The Implementation is as follows: 1. Get a refresh token for the first time when OAUTH 2.0 credentials are requested from Google 2. The refresh token is saved and this refresh token is used to get Access Tokens, which inturn is used for authentication to the GMAIL API.
Why Save Refresh Token when you can get the Access Token itself?
According to Google OAUTH2.0 standards, inorder to obtain Access Token, a End-User cosent is needed. In this case the End-User will be given a Authorization Screen, which is not what we want. Morever we dont want to use the End-User Account info. But we would be using the Developers or Website Owners Email Account to send mails. Using the above method, access token to the End-User Account will be obtained, which is not the case that we want.
As a work around to this a Refresh Token for the Website Owner Account is obtained before hand by setting necessary credentials in Google Developers Console and running the get_oauth_token.php and this Refresh Token is permanently used for getting temporary access tokens.
Please note Refresh Token is send only the first time you request for Access Token and not thereafter.