アプリ一覧のURLを使うと便利です。
be-styleだったら↓です。
https://itunes.apple.com/jp/developer/be-style/id534131442?mt=8
このURLを得る方法は、
・App Storeで自分のアプリのページを開く
・アプリ名の下にデベロッパー名(ここではbe-style)があるので右クリック
・リンクをコピー
です。
アプリづくりは長い間やっていますが、最近知ったことでした。

if (!FBSession.activeSession.isOpen) {
[FBSession openActiveSessionWithReadPermissions:@[@"public_profile"]
allowLoginUI:YES
completionHandler:^(FBSession *session,
FBSessionState state,
NSError *error) {
if (error) {
NSLog(@"ログイン失敗");
UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"Error"
message:error.localizedDescription
delegate:nil
cancelButtonTitle:@"OK"
otherButtonTitles:nil];
[alertView show];
} else if (session.isOpen) {
NSLog(@"ログイン成功");
}
}];
return;
}
日 | 月 | 火 | 水 | 木 | 金 | 土 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 |