Hi guys,
In here:
<form method="POST" action="https://creator.zoho.com/api/xml/applications/limit=20">
<input type="hidden" name ="authtoken" value="************">
<input type="hidden" name ="scope" id="scope" value="creatorapi">
<input type="submit" value="List applications">
</form>
How can I make this get/post request?
I tried variations of:
- requestMap = map();
- requestMap.put("authtoken", "valid authtoken ************");
- requestMap.put("scope", "creatorapi");
- responseString = getUrl("https://creator.zoho.com/api/xml/applications/limit=20", requestMap,false);
- alert(responseString);
And get this:
{"responseCode":"200","responseText":"
Specified ticket [null] is no longer valid. Provide a correct one.
2913
"}
Any help is appreciated,
Regards,
Idan