> I'm trying to connect to a server that requires a custom header. I'm using
> CURL and Gambas v2.13. I can't find a way to modify the outgoing headers.
> 
> Here's my code snippet:
> 
>   DIM mySock AS HttpClient
>   DIM myResponse AS String
>   DIM myRequest AS String
>   DIM AuthToken as String
> 
>    AuthToken = "TESTTOKEN"
> 
>     mySock = NEW HttpClient
>     myRequest = makeJSON(TextBox1.Text, myParent)
> 
>     MySock.Async = FALSE
>     MySock.Timeout = 60
>     mySock.url = "http://www.zenfolio.com/api/1.2/zfapi.asmx";
> 
> 
>     MySock.Headers = ["X-Zenfolio-Token: " & AuthToken]
>     MySock.Post("application/json", myRequest)

This is not possible at the moment. I plan to add that for Gambas 3, and may 
be I will be able to backport it to Gambas 2 as it does not introduce any 
change in the API.

Regards,

-- 
Benoît Minisini

------------------------------------------------------------------------------
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
_______________________________________________
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user

Reply via email to