阅读this后,我一直试图在我的xamarin.android应用程序中创建安装,但是我一直收到“未经授权的错误”,我觉得我丢失了一些东西。任何帮助表示赞赏。
以前,我可以使用进行注册
@ExceptionHandler(MethodArgumentNotValidException.class)
public ResponseEntity<Object> argNotValidExceptionHandler(MethodArgumentNotValidException ex){
String localizeMessage = ex.getLocalizeMessage();
ErrorMessage errorMessage = new ErrorMessage(LocalDateTime.now(), localizeMessage);
return ResponseEntity.status(HttpStatus.BAD_REQUEST).body(errorMessage);
}
因此我确定集线器已正确设置,并且使用的连接字符串正确。
我的安装对象
var regID = hub.Register(token, tags.ToArray()).RegistrationId;
致电创建安装
install.installationId = installationId; //guid
install.tags = Tags;
install.platform = "gcm";
install.pushChannel = token; //refresh token from fcm