Hi,
I want to develop an apache module for the OAuth WRAP protocol:
1) Upon an unauthenticated request, the module should return a 401
with header "WWW-Authenticate: WRAP"
2) When the request contains the header "Authorization: WRAP
access_token=", the module should validate this
Pedro Félix wrote:
Hi,
I want to develop an apache module for the OAuth WRAP protocol:
[snip]
I'm familiar with architectures/pipelines for HTTP processing (e.g IIS or
ASP.NET), but not with Apache or Apache modules.
Could some one point me to the relevant documentation or code
frameworks/
Relevant examples can be found in the source,
httpd-2.2.4/modules/aaa/ .
Note that in this area there were significant changes between Apache 1.x
and Apache 2.x.
In Apache 2, authentication and authorization is correctly
split between modules that interact with the client, implementing
pro