BigCommerce API. What is the syntax of an url string that would allow me to download orders in xml? -
bigcommerce api. syntax of url string allow me download orders in xml? can embed login credentials in string , post https or need post them xml? have tried different variations of username, api_key, api_toke , inserted them in url string keep getting error messages.
to answer question: no, cannot send credentials in url. it's doubtful such thing retain pci compliance of store.
you need send user credentials (username , api key) via http headers curl. technically can ajax thats huge security risk have process request server side.
if want test if can make connection try this: http://www.hurl.it/
url: site_url/orders.xml
get
http basic auth ->
username: bigcommerce username
password: api key
this should return result.
Comments
Post a Comment