Closed GoogleCodeExporter closed 9 years ago
The problem here is that this is probably Google specific. Other service
providers
may indicate the denial of access using other means (such as calling back to
the
consumer or other status codes).
The standard is really unclear about this, unfortunately.
The standard suggests, however, to respond with 400 during token requests on
the
following conditions:
* Unsupported parameter
* Unsupported signature method
* Missing required parameter
* Duplicated OAuth Protocol Parameter
Thus, having a 400 throw OAuthAuthorizationDeniedException could be highly
misleading, if not wrong.
I see the problem, however, that it's currently not straight forward to handle
these
cases, but at the moment, I don't see any way of doing this in a way that's
portable
across all OAuth service providers.
Original comment by m.kaepp...@gmail.com
on 8 Feb 2010 at 9:04
Would it be possible to store the "raw" HTTP status/message from provider,
which could
be retrieved as method call?
Original comment by zuperglu...@gmail.com
on 8 Feb 2010 at 9:42
certainly, if the provider set one. I could certainly add an
OAuthBadRequestException,
which would be thrown on a 400, and which had the error message sent by the
provider
set, if there was any.
Original comment by m.kaepp...@gmail.com
on 8 Feb 2010 at 9:47
Looking into the code you already detect 401 and map that to
OAuthNotAuthorizedException.
Could you not map 400 similar e.g OAuthBadRequestException?
Both are "allowed" in spec as means to reject "Consumer requests"
It is somewhat different than current response:
OAuthExpectationFailedException(
"Request token or token secret not set in server reply. "
+ "The service provider you use is probably buggy.");
Original comment by zuperglu...@gmail.com
on 8 Feb 2010 at 9:57
Hum, you responded with my proposal before I "submitted". Cool...
Original comment by zuperglu...@gmail.com
on 8 Feb 2010 at 9:59
You have a good point, I'll change that with the 1.2.1 maintenance release I
had
planned anyway. Just give me some time, have my hands full with work right now,
so it
could take a couple weeks.
Original comment by m.kaepp...@gmail.com
on 8 Feb 2010 at 10:02
Would be great to log the error response when http response code is not 200. It
could
be part of exception message as well.
if(statusCode!=200){
InputStream errorStream=connection.getErrorStream();
if(errorStream!=null){
BufferedReader reader = new BufferedReader(new
InputStreamReader(errorStream));
StringBuilder errorString = new StringBuilder();
String line = reader.readLine();
while (line != null) {
errorString.append(line);
line = reader.readLine();
}
errorString.toString();
OAuth.debugOut("Http Response Error Body",
errorString.toString());
}
}
Cheers!
Original comment by mrdu...@gmail.com
on 20 Feb 2010 at 1:51
Hi,
I have changed the service provider implementation to attach the response body
to the
exception, if the provider replies in error.
more precisely, both OAuthNotAuthorizedException (401) and
OAuthCommunicationException (anything non-200 and non-401) now have a method
getResponseBody() which contains the error XML (or whatever is served by the
provider).
The reason why I didn't add a OAuthAuthorizationDeniedException is that
authorization
denial is completely underspecified in the spec. In fact, most providers don't
seem
to do anything at all on denial. Twitter simply displays a page saying "you
denied
this app access" and then sits there doing nothing. At Qype we redirect to the
frontpage, which is also less than optimal I guess :-)
Point being, before I can do anything portable here, it has to be specified how
a
denial is communicated to the consumer.
Original comment by m.kaepp...@gmail.com
on 12 Mar 2010 at 2:59
Attachments:
Original comment by m.kaepp...@gmail.com
on 14 Mar 2010 at 10:06
Original issue reported on code.google.com by
zuperglu...@gmail.com
on 8 Feb 2010 at 8:12