使用 LinkedIn REST API 的 v2,我正在寻找一种将文章发布到我公司的 LinkedIn 页面的方法。
我已在此处注册https://business.linkedin.com/marketing-solutions/marketing-partners/become-a-partner/marketing-developer-program,目前正在等待批准。
我希望能够在我公司的网站上创建博客文章,当我按“发布”时,我想将该博客文章作为文章发布到我公司的 LinkedIn 页面。
我最接近查找有关此主题的信息的是https://docs.microsoft.com/en-us/linkedin/marketing/integrations/community-management/shares/articles-api 但这并没有透露任何信息张贴文章,只检索和删除它们
我的应用程序与ViewDeck有一些问题.
我正在尝试将它与故事板一起使用,示例仅显示如何将其与nibfiles一起使用.我已经在stackexchange上检查了许多方法,但我似乎没有让它工作.
我在appdelegate.m文件中的代码:
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
//UIViewController* leftController = [[UIViewController alloc] init];
UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"MainStoryboard" bundle:nil];
RightViewController* rightController = [[RightViewController alloc] initWithNibName:@"RightViewController" bundle:nil];
ViewController* centerController = [[ViewController alloc] initWithNibName:@"ViewController" bundle:nil];
self.centerController = [[UINavigationController alloc] initWithRootViewController:centerController];
IIViewDeckController* deckController = [[IIViewDeckController alloc] initWithCenterViewController:self.centerController rightViewController:rightController];
deckController.rightSize = 100;
self.window.rootViewController = deckController;
[self.window makeKeyAndVisible];
return YES;
}
Run Code Online (Sandbox Code Playgroud)
我当然得到预期的错误:
2012-12-29 03:55:18.501 Network[27451:c07] *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Could not load NIB in bundle: 'NSBundle …Run Code Online (Sandbox Code Playgroud)