parse icon indicating copy to clipboard operation
parse copied to clipboard

Parse.com API Client Library

Results 3 parse issues
Sort by recently updated
recently updated
newest added

Based on this issue #5, We can instantiate multiple client now. - `defaultClient` has been changed to map of `appT`. - `AppConnectionWrapper` function allows you to forward a request to...

In the following code, useMasterKey () always returns false, so cloud function cannot be used with master key. https://github.com/kylemcc/parse/blob/428efbfdaa1d8231e9b7c159f7d3c630e7c5b682/session.go#L187 ```go func (s *loginRequestT) useMasterKey() bool { return false } ```

Hi, It seems that the defaultClient is present in the `parse` package as a singleton. https://github.com/kylemcc/parse/blob/master/rest.go#L75 ```go var defaultClient *clientT // Initialize the parse library with your API keys func...