收藏
回答

iOS微信授权手机号方式 发送短信之后,收不到授权回馈的链接短信

框架类型 问题类型 操作系统 操作系统版本 手机型号 微信版本
小程序 Bug iOS iOS 13.1 iPhone 7 1.8.6.1

iOS微信授权手机号方式 

通过"

+ (void)sendAuthReq:(SendAuthReq *)req viewController:(UIViewController*)viewController delegate:(nullable id<WXApiDelegate>)delegate completion:(void (^ __nullable)(BOOL success))completion;

"

发送短信之后,收不到授权回馈的链接短信怎么办?

回答关注问题邀请回答
收藏

2 个回答

  • 微尘
    微尘
    04-16

    发送短信成功,但是收不到短信反馈。

    04-16
    有用
    回复 1
    • 微尘
      微尘
      04-16
      SendAuthReq *sendAuth = [SendAuthReq new];
              sendAuth.scope = @"snsapi_userinfo";//授权作用域:获取用户个人信息
              sendAuth.state = @"wx_oauth_authorization_state";//@"pedometer_binding";//用于保持请求和回调的状态,授权请求或原样带回
              dispatch_async(dispatch_get_main_queue(), ^{
                  
                  NSLog(@"[UIApplication sharedApplication].delegate %@", [UIApplication sharedApplication].delegate);
                  [WXApi sendAuthReq:sendAuth viewController:self delegate:[UIApplication sharedApplication].delegate completion:^(BOOL success) {
                      NSLog(@"");
                  }];
              });
      04-16
      回复
  • 灵芝
    灵芝
    2019-11-25

    确认已经发送成功了么?是否有报错信息?另外,文档链接麻烦贴一下

    2019-11-25
    有用
    回复 1
    • 🙃
      🙃
      2019-11-29
      为什么我点击短信里的链接回到app,没有有回调呢?
      2019-11-29
      回复
登录 后发表内容
问题标签