public interface AppLovinPostbackListener
AppLovinPostbackService.| Modifier and Type | Method and Description |
|---|---|
void |
onPostbackFailure(java.lang.String url,
int errorCode)
Indicates that a postback dispatched to a given URL has failed.
|
void |
onPostbackSuccess(java.lang.String url)
Indicates that a postback dispatched to a given URL completed successfully.
|
void onPostbackSuccess(java.lang.String url)
We define success as having received a 2XX response code from the remote endpoint.
url - URL which was notified.void onPostbackFailure(java.lang.String url,
int errorCode)
We define failed as having received a response code outside the 2XX range, or having been unable to establish a connection.
url - URL which was notified.errorCode - HTTP status code received, if any; otherwise a negative constant.