Last active
December 14, 2022 15:38
-
-
Save Shelob9/23b15c76f0d31dd17f8f236e9e8cda0b to your computer and use it in GitHub Desktop.
Using a WordPress REST API route to proxy request to thrid party API, so api key isn't needed in client https://twitter.com/UpTheIrons1978/status/1602938132244094976
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$.post( url_of_wp_endpoint, {email: '[email protected]' } ); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Endpoint for adding contacts to CRM | |
*/ | |
add_action( 'rest_api_init', function () { | |
register_rest_route( 'whatever/v1', '/add-to-crm', array( | |
'methods' => 'POST', | |
'callback' => function($request){ | |
$resoponse = wp_remote_post( $url_for_crm, [ | |
'body' => [ | |
//Pass auth token defined in a constant in wp-config | |
'token' => AUTH_TOKEN, | |
'email' => $request['email'] | |
] | |
]); | |
//Return a response... | |
}, | |
) ); | |
} ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment