5
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

pushがうまくいかない時(devicetokenがうまく取れない時)の対処法

Posted at

エラーログを出力する

application:didFailToRegisterForRemoteNotificationsWithError
を設定してログを出す

以下のように記述

Objective-C

- (void) application:(UIApplication *)application didFailToRegisterForRemoteNotificationsWithError:(NSError *)error {
NSLog(@"error: %@", error);
}

Swift

func application( application: UIApplication!, didFailToRegisterForRemoteNotificationsWithError error: NSError! ) {
        println("error: \(error)")
}

ログの内容

application:didFailToRegisterForRemoteNotificationsWithErrorを追加すると以下のようにログが出力される

Domain=NSCocoaErrorDomain Code=3000 "Appの有効な“aps-environment”エンタイトルメント文字列が見つかりません" UserInfo={NSLocalizedDescription=Appの有効な“aps-environment”エンタイトルメント文字列が見つかりません}

のように出る

ログの内容から修正する

今回のエラーの場合、通知用の証明書が登録されているかどうかないなら登録をして、TargetのGeneralのpush NotificationがちゃんとONになっているかどうかを確認する。
スクリーンショット 2016-09-07 21.20.02.png
これで無事devicetokenが取れる!

5
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?