Инстаграм iPhone Описание Крюка

Есть ли возможность добавить описание в новый пост в Instagram, созданный через iPhone Hook?

        NSString *moviePath = outputPath;
        NSString *caption = @"description";
        NSURL *movieURL = [NSURL fileURLWithPath:moviePath isDirectory:NO];
        ALAssetsLibrary *library = [[ALAssetsLibrary alloc] init];
        [library writeVideoAtPathToSavedPhotosAlbum:movieURL
                                    completionBlock:^(NSURL *assetURL, NSError *error)
        {
            NSURL *instagramURL = [NSURL URLWithString:
                                   [NSString stringWithFormat:@"instagram://library?AssetPath=%@&annotation=%@",
                                    [[assetURL absoluteString] stringByAddingPercentEncodingWithAllowedCharacters:[NSCharacterSet alphanumericCharacterSet]],
                                    [caption stringByAddingPercentEncodingWithAllowedCharacters:[NSCharacterSet alphanumericCharacterSet]]]
                                   ];
            if ([[UIApplication sharedApplication] canOpenURL:instagramURL]) {
                [[UIApplication sharedApplication] openURL:instagramURL];
            }
            else {
                NSLog(@"Can't open Instagram");
            }
        }];

Я пытался таким образом, но он ничего не показывает в текстовом поле описания. Вы можете мне помочь?

0 ответов

Другие вопросы по тегам