GET method works fine, but POST doesn't. Has anyone an idea?
config.macros.test123= {};
config.macros.test123.handler = function
(place,macroName,params,wikifier,paramString,tiddler){
var who = params.length > 0 ? params[0] : "wofgrld";
var callbackddd = function(status,params,responseText,url,xhr) {
console.log("xhr = %o, b = %o",xhr);
if (xhr.status == 404) {
return;
}
}
var r = doHttp("get","http://bla.bla.org/
test.php","user=bladfddddddddddddddddddddd;",'application/x-www-form-
urlencoded', "","",callbackddd );
var r = doHttp("post","http://bla.bla.org/
test.php","user=bladfddddddddddddddddddddd;",'application/x-www-form-
urlencoded',"","",callbackddd );
};
--
You received this message because you are subscribed to the Google Groups
"TiddlyWiki" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/tiddlywiki?hl=en.