Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save lubien/e2fa997c8011bf94a12d4206bd41ee15 to your computer and use it in GitHub Desktop.
Save lubien/e2fa997c8011bf94a12d4206bd41ee15 to your computer and use it in GitHub Desktop.
function testaPost(){
const url = '/includes/curl2.php'
const data = {
username: 'lubien',
password: '123456',
data: `<?xml version='1.0'?>
<methodCall>
<methodName>RequestServer.GetTableState</methodName>
<params>
<param>
<value><i4>112</i4></value>
</param>
<param>
<value><i4>1649267442702</i4></value>
</param>
</params>
</methodCall>`
}
$.post(url, data)
.done(console.log)
.fail(console.error)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment