multipart posts with username password templates
Status: Alpha
Brought to you by:
coroberti
From: Matt B. <mbe...@IM...> - 2014-01-28 02:01:00
|
Hi there I'm trying to use curl-loader to test a media server we made. Is it possible to use the form type "UNIQUE_USERS_AND_PASSWORDS" with the multi part post form string to be "username=%s%d&password=%s%d". Or can you only use the "username=%s%d&password=%s%d" with a non multi part post? I may be confused. Here is what I have in my conf file USERNAME="user" PASSWORD="password" #URL_DONT_CYCLE = 1 FORM_USAGE_TYPE="UNIQUE_USERS_AND_PASSWORDS" REQUEST_TYPE=POST MULTIPART_FORM_DATA="user=%s%d" MULTIPART_FORM_DATA="password=%s%d" MULTIPART_FORM_DATA="file=@image.jpg<mailto:file=@image.jpg>" It sends the actual string %s%d. |