Dr. Thomas

Results 13 issues of Dr. Thomas

This should address issue #126 This also removes that the profile['name'] is set to email if missing, which can have undesirable effects of publishing the email of a user (revert...

FB URL has changed to https://www.facebook.com/v3.0/dialog/oauth This URLmust be changed at **providers/facebook.py#L83**: https://github.com/bbangert/velruse/blob/master/velruse/providers/facebook.py#L83 You may also need to add all possible "Valid OAuth Redirect URIs" to: https://developers.facebook.com/apps/YOUR_APP_ID/fb-login/settings/ https://developers.facebook.com/docs/facebook-login/manually-build-a-login-flow/

facebook.py crashes File "distlib/velruse/providers/facebook.py", line 121, in callback access_token = dict(parse_qsl(r.text))['access_token'] KeyError: 'access_token' Facebook Graph API v2.2 ENDS 27 March, 2017 Graph API v2.2 which will reach the end of...

This is probably not fixable, but should be noted in the Readme. ReachableViaWWAN is **_ON**_ if the iPhone 6 iOS8 is connected via 3G, but the specific App is blocked...

This is the example given in the doc. It is way too spartanic and even **omits all parameters passed to the click handler**. ``` element.click(function() { this.fill({ color: '#f06' })...

A file copied with copy2 (is there a copy1?) resets the content-type to binary/octet-stream on the destination file if the file is copied. The documentation does not specify that the...

I use a dict datastructure to store permission sets that should be CONSTANT and pass it to cloudstorage.\* functions. Some cloudstorage functions write to this permission set and modify it....

### Platforms affected iOS ### Motivation and Context Fixes issue https://github.com/apache/cordova-plugin-geolocation/issues/224 ### Description ``` if(error.code == kCLErrorDenied && [self isAuthorized] && [self isLocationServicesEnabled]) then do not stopUpdatingLocation and thus continue...

# Problem Changing authorization in Settings to denied (when the App is suspended) fails to transmit PositionError to the WebView (found this while testing #224 as I noticed the PERMISSION_DENIED...

In iOS 14 watchPosition stops working as soon as the Application is suspended and reactivated. This is probably due to a new(?) iOS behavior of sending error.code == kCLErrorDenied when...