Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
2.5.0-beta2
-
None
Description
From Doug Davies:
Here's what I think it going on.
In io.js this code
var opt_headers =
{ 'X-Shindig-ST' : shindig.auth.getSecurityToken() };
behaves differently. Even though I see both browsers set it as follows:
{"X-Shindig-ST":null}later on in UrlParameterAuthenticationHandler it's set to the STRING "null"
(not the value null) for webkit browsers.
// no token yet, see if it was attached as a header
if (StringUtils.isEmpty(token)) {
String t = request.getHeader( "X-Shindig-ST" );
if (StringUtils.isNotBlank(t))
}
This blows up during decryption:
Attachments
Attachments
Issue Links
- is related to
-
SHINDIG-1768 Add shindig security token to makeRequest header
- Resolved