[Gambas-user] CURL: Custom outgoing headers

Benoît Minisini gambas at ...1...
Mon Mar 8 03:22:36 CET 2010


> 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




More information about the User mailing list