opus Active Member Licensed User Longtime User Dec 17, 2015 #1 Hi, is it possible to send a request as follows in order to recieve a JSON formated response URL like: "https://somethig.somwhere/json/detail?id=xyz&callid=abcd" It works using the browser, however using a HTTPJob.download I only get an error "Forbidden" Is the httpS the problem?
Hi, is it possible to send a request as follows in order to recieve a JSON formated response URL like: "https://somethig.somwhere/json/detail?id=xyz&callid=abcd" It works using the browser, however using a HTTPJob.download I only get an error "Forbidden" Is the httpS the problem?
Erel B4X founder Staff member Licensed User Longtime User Dec 18, 2015 #2 The https is not the problem. The user agent might be the problem. Upvote 0
opus Active Member Licensed User Longtime User Dec 18, 2015 #3 Thanks, I found the problem (between my ears ;-) ), I had a mistake in the send URL as well in the posted example. (not "..detail?id=.." but "..detail.php?id=...") Upvote 0
Thanks, I found the problem (between my ears ;-) ), I had a mistake in the send URL as well in the posted example. (not "..detail?id=.." but "..detail.php?id=...")