John Michael Ferraris
John Michael Ferraris
I want to access the request object of the token endpoint so that I'll know the request headers accessing it. As shown in this [section](https://github.com/jaredhanson/oauth2orize#implement-token-endpoint): ``` app.post('/token', passport.authenticate(['basic', 'oauth2-client-password'], {...
I tried to execute these lines thru PHPUnit: ``` $username = 'jxxxxxx'; $password = 'xxxxx'; $wsdl = 'xxxx'; $sp = new \Thybag\SharePointAPI($username, $password, $wsdl); $lists = $sp->getLists(); print_r($lists); ``` When...
First I would say, nice repository. However, I noticed that there is only 1 contributor/maintainer. I just wanna ask if this is production ready? Other recommendations for a fullstack react...
Hello, We caught an error saying: ``` java.security.NoSuchAlgorithmException: KeyStore Android OpenSSL implementation not found ``` This error was caught on a Samsung S4 device running Android 4.2.2. Is this a...
Hello, I'm trying to review on my javascript skills here and would like to try out this neat scraper. I have this static website here: http://www.phivolcs.dost.gov.ph/html/update_SOEPD/EQLatest.html, I'm trying to scrape...
Hello, just want to confirm if this tool handles `unhandled exceptions` automatically? I tried a simple: throw new Error('Something happened') but it was not logged in our Firebase console. Did...
Hello, Just a little contribution in upgrading the Guzzle version to 6.0 and some usage in the Client. What I've verified now: * Fetching of people * Creating tasks under...
The issue is that the maximum allowable oauth timestamp is 7 seconds behind when getting the timestamp using `new DateTime()`. I solved this by subtracting 7 seconds. I'm not really...
I'm using FitBit service and I want to know how to get the response headers of an api request. This [doc](https://wiki.fitbit.com/display/API/Rate+Limit) shows the response headers.