Jeff O'Neill

Results 7 comments of Jeff O'Neill

It look like Microsoft has completely revamped its Oauth2 login. Authomatic seems to support v1 and the latest is v2. It looks like v1 credentials still work but if you...

I'm getting close with this code: ``` class WindowsLiveV2(OAuth2): user_authorization_url = 'https://login.microsoftonline.com/common/oauth2/v2.0/authorize' access_token_url = 'https://login.microsoftonline.com/common/oauth2/v2.0/token' user_info_url = '' @classmethod def _x_request_elements_filter(cls, request_type, request_elements, credentials): if request_type is cls.USER_AUTHORIZATION_REQUEST_TYPE: url, method,...

Sorry the serial posts about this. I kept thinking I was going to stop but I kept working on it, and now I have something working. Here is some code...

Sure, I've never done a pull request so give me some time to figure that out. Do you know if the existing Windows Live provider still works? If so, we...

Here is an update to the above code so that it works with Microsoft business accounts. For some bizarre reason, Microsoft returns different info depending on whether it is a...

If you'd like help for something like this, please at least use code formatting and proper code indentation to make it easier for others to read.

I just tried replacing pdfminer with pdfminer.six and the results were much slower. I don't know if it is the code itself or perhaps default values of options changed, but...