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

Popular posts from this blog

jquery - How can I dynamically add a browser tab? -

node.js - Getting the socket id,user id pair of a logged in user(s) -

keyboard - C++ GetAsyncKeyState alternative -