Corona SDK and http digest authentication

As the topic subject, does corona allow http digest authentication by network.request?

If no, does it seems possible to implement it by lua socket? [import]uid: 104317 topic_id: 26251 reply_id: 326251[/import]

Yes, just send the correct headers in the request. Everything needed is in place AFAIK: md5 and http requests. The process isn’t automated though, so you’ll have to take care of all the necessary steps to handle and to provide the required responses to the server.

PS: You can also implement it with LuaSockets if you want, but that will require much more code, especially if you want the requests to be non-blocking like what happens with network.request(). BTW, I only implemented Basic authentication so far, so this is all theoretical speaking, but I see no reason why Digest shouldn’t be possible to implement as well. [import]uid: 61899 topic_id: 26251 reply_id: 106396[/import]