You appear to be a bot. Output may be restricted
Description
Retrieve the return URL for Amazon after authentication on Amazon is complete
Usage
$string = EDD_Amazon_Payments::get_amazon_authenticate_redirect();
Parameters
Returns
string
Source
File name: easy-digital-downloads/includes/gateways/amazon-payments.php
Lines:
1 to 9 of 9
private function get_amazon_authenticate_redirect() { if ( is_null( $this->redirect_uri ) ) { $this->redirect_uri = esc_url_raw( add_query_arg( array( 'edd-listener' => 'amazon', 'state' => 'return_auth' ), edd_get_checkout_uri() ) ); } return $this->redirect_uri; }