Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save corypratt/f590198243d3c5d7d509cda8e3d57806 to your computer and use it in GitHub Desktop.
Save corypratt/f590198243d3c5d7d509cda8e3d57806 to your computer and use it in GitHub Desktop.
$url = 'https://login.libsyn.com';
$args = array(
'headers' => array(
array( 'Content-Type' => 'application/x-www-form-urlencoded;charset=UTF-8' ),
),
'body' => array(
'req' => 'https://four.libsyn.com/stats/ajax-export/show_id/' . $showID . '/type/downloads/target/show/id/' . $showID . '/',
'email' => $email,
'password' => $password
),
);
$response = wp_remote_post( $url, $args );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment