How to get the list of questions or questions from customer customer?

URL: http://www.NamedosEusite.com.br/api_seller_products_ots.php?action=list_products_contacts





Header Parameter format
token base64_encode ()
Secret base64_encode ()
email base64_encode ()

Php Sample:

 // sample List Products Contacts

$ URL = $ tabain_url. ' /API_SELLER_PRODUCTS_OTHERS.PHP? Action = List_Products_Contacts ' ;;

$ CH = curl_init ($ URL);
Curl_Setopt ($ CH, Curlopt_Returntransfer, True);
curl_setopt ($ CH, curlopt_ssl_verifypeer, false);
Curl_Setopt ($ CH, Curlopt_httpheader, Array (
' CONTENT-TYPE: Application/JSON ',
"Cache-Control: No-Cache",
' TOKEN: ' . base64_encode ($ token),
' Secret: ' . base64_encode ($ secret),
' E-mail: ' . base64_encode ($ email)))
);

$ result = curl_exec ($ CH);
Curl_Close ($ CH);

print_r ($ result);

// Sample List Products Contacts Eof

return:

id
Text

Leave a Reply 0