我想通过标签和搜索说明发布到Blogger。 我收到了来自Google https://github.com/google/google-api-php-client/blob/master/src/Google/Service/Blogger.php
的链接override func viewDidLoad() {
super.viewDidLoad()
//Checks if the value that is saved into the app is greater than the
//starting position the app first starts at (assuming index 0?)
if NSUserDefaults.standardUserDefaults().integerForKey("ByteLocation") != 0 {
TechByteLabel.text = TechnologyfactBook.TechfactsArray[TechfactIndex]
} else {
//The code that first displays the values if the user
//just started the app
}
}
在这篇文章之后,我登录了博客。 我可以在那里看到上面的帖子。这篇帖子有'帖子标题'和' Post Body',但它没有'标签'和'搜索说明'。
如何使用'标签'和'搜索说明'?
有可能吗?
答案 0 :(得分:0)
当前无法发布或获取搜索描述。我已经对整个API进行了几次查找,但没有任何结果。我认为搜索字词实际上并未与Blogger对象关联,也就是说,它不是Blogger的独立功能。伤心。 。 。
答案 1 :(得分:-2)
您应该使用:
$NewPost = new Google_Service_Blogger_Post();
$NewPost->setLabels(array('Label1', 'Label2'));