Sign in
webkit
/
WebKit
/
c76c58243e3b15757ea8668f43536a601f3d5c6f
/
.
/
LayoutTests
/
http
/
tests
/
loading
/
resources
/
oauth-subresource.php
blob: 970396f9786908ce17a178d106a5b2aa1b07ddfe [
file
] [
log
] [
blame
]
<?
php
$realm
=
$_SERVER
[
'REQUEST_URI'
];
header
(
"Cache-Control: no-store"
);
header
(
"WWW-Authenticate: OAuth realm=\""
.
$realm
.
"\""
);
header
(
'HTTP/1.1 401 Unauthorized'
);
echo
"Sent OAuth Challenge."
;
exit
;
?>