richzw
richzw
I try verify my receipt through plain url, and the response is { status: 21004 } Per [source code](https://github.com/awa/go-iap/blob/master/appstore/validator.go#L131) err = json.Unmarshal(buf, &result) if err != nil { return err...
I am not familiar with CoffeeScript, so I try to convert the [https://gist.github.com/benmoss/e93125d1fb3561be9276](https://gist.github.com/benmoss/e93125d1fb3561be9276) to JavaScript. Here it is [https://gist.github.com/richzw/57177f3fecbeb921819c](https://gist.github.com/richzw/57177f3fecbeb921819c) @squaremo and @benmoss, Could you please help me review it? Thanks...
@cmoesel and @benmoss thanks for your help. @benmoss, I want to publish message to amqp if the channel is ok, otherwise, continue to reconnect to amqp until the connection is...
hi @benmoss and @squaremo In this gist [https://gist.github.com/richzw/6b4d348c6b8abdc8176e](https://gist.github.com/richzw/6b4d348c6b8abdc8176e), I want to `Sender` class to handle connection failure recover through re-connection. Here are the test codes. ``` javascript var Sender =...
@RealLau , I try to add the method `ParseNotificationV2` to parse the notification v2 body. You could try it.
@Daydaylw3 Here is one sample code to use `ParseNotificationV2` to decode SignedRenewalInfo and SignedTransactionInfo field ```go tokenStr := SignedRenewalInfo // or SignedTransactionInfo if err := c.ParseNotificationV2(tokenStr, result); err != nil...
After conducting in-depth research and testing on this issue, we found the meaning of `OfferId`. let me explain it with one detailed example. Given one subscription whose productId is `pid.aaa....
The error message "Client.Timeout" indicates a failure to connect with "oauth2.googleapis.com". This error may be caused by a network issue. @ChangedenCZD
We met the same issue and we added one outer wrapper to clone the request body, since the body of the request has been consumed in the customErrorHandler. ```go type...
> Hi, thanks for your issue. Yeah this is unfortunate, but I don't know that there's much we can do here. As you say, the body has already been consumed...