- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我们正在使用:
BMSClient.getInstance().registerAuthenticationListener("realm", new CustomAuthentication(this));
和:
AuthorizationManager.createInstance(this.getApplicationContext());
AuthorizationManager.getInstance().setAuthorizationPersistencePolicy(AuthorizationManager.PersistencePolicy.ALWAYS);
将授权数据存储在手机上。 “授权数据将保存在本地存储”设置为始终。
上面的代码总是在启动时在我们的初始屏幕上运行,所以它总是在应用程序重新启动时运行。
我们遇到的问题是,经过一段时间(几小时或几天)后,当我们怀疑 token 已过期时,我们会收到 HTTP 307 形式的响应。即使在重新启动应用程序后,我们也会不断收到对我们请求的响应。解决它的唯一方法是从设置进入应用程序并清除所有数据。
以下问题将帮助我们继续进行测试和可能的解决方案:
我们的自定义监听器:
public class CustomAuth implements AuthenticationListener {
private Context activityContext;
public CustomAuth(Context activityContext) {
this.activityContext = activityContext;
}
@Override
public void onAuthenticationChallengeReceived(AuthenticationContext authContext, JSONObject challenge, Context context) {
//1. read the challenge JSONObject
//2. handle the challenge (use the context for handling UI based operations)
//3. return response using the AuthenticationContext authContext
SharedPreferences preferences = activityContext.getSharedPreferences("UserPreference", Context.MODE_PRIVATE);
String email = preferences.getString("email", "");
if(email.equals("")) {
email = "unidentified-user@error.com";
}
JSONObject jsonEmail = new JSONObject();
try {
jsonEmail.put("email", email);
} catch (JSONException e) {
authContext.submitAuthenticationChallengeAnswer(null);
}
authContext.submitAuthenticationChallengeAnswer(jsonEmail);
}
@Override
public void onAuthenticationSuccess(Context context, JSONObject info) {
//additional operations in case of authentication success
Log.d("Authentication", "Auth success: " + String.valueOf(info));
}
@Override
public void onAuthenticationFailure(Context context, JSONObject info) {
//additional operations in case of authentication failure
Log.d("Authentication", "Auth failure ." + String.valueOf(info));
}
}
最佳答案
您是否尝试过在收到 307 并重新发送请求时使用 AuthorizationManager.clearAuthorizationData() API?
关于android - 使用 BMS Client 时如何以及何时刷新 token ,有没有办法强制刷新?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35887438/
按照 Bluemix 网站上的说明;我安装了 Swift SDK pod use_frameworks! pod 'BMSSecurity' 它在我的终端上显示: 然后,当我构建项目时,出现了 3
我从 here - available online 下载了一个名为 BMS 的显着性模型“Exploiting Surroundedness for Saliency Detection: A Bo
我们正在使用: BMSClient.getInstance().registerAuthenticationListener("realm", new CustomAuthentication(thi
When i launch app then below error print in debug log, i want to find out is it app side issue or de
从这里开始: https://github.com/ibm-bluemix-mobile-services/bms-samples-cordova-hellopush 我从 git 建立了一个新的本地
我正在尝试运行 GitHub 上可用的推送通知示例.不幸的是,配置概述here不起作用。 文档说:在您的 AppDelegate.m 顶部: #import "[your-project-name]-
我是一名优秀的程序员,十分优秀!