Skip to content

Instantly share code, notes, and snippets.

@lgedeon
Created December 20, 2013 16:22
Show Gist options
  • Save lgedeon/8057237 to your computer and use it in GitHub Desktop.
Save lgedeon/8057237 to your computer and use it in GitHub Desktop.
wip maybe
$response = wp_remote_post(
"https://api.freewheel.tv/services/upload/bvi.xml",
array(
'method' => 'POST',
'timeout' => 30,
'redirection' => 5,
'httpversion' => '1.0',
'headers' => array(
'X-FreeWheelToken' => 'MYAPIKEY',
'Expect' => ????
),
'body' => array('post_file'=>'@/my_file1.xml'),
'sslverify' => false
)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment