Skip to content

Instantly share code, notes, and snippets.

@ktamas77
Created July 12, 2012 22:56
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ktamas77/3101679 to your computer and use it in GitHub Desktop.
Save ktamas77/3101679 to your computer and use it in GitHub Desktop.
AT&T API HTTP POST REQUEST HEADER for ALL SOAP Actions
<?php
$headers = Array(
'Content-Type: text/xml;charset=UTF-8',
'SOAPAction: ""'
);
?>
@ktamas77
Copy link
Author

This is a unified HTTP POST REQUEST header which required by AT&T for all SOAP requests.
The 'SOAPAction' line requires no parameters, it should work with all action as it is.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment