我有一个article.json文件(如下所示),我想连接到Apple News并测试:
{
"version": "1.4",
"identifier": "TestArticle",
"title": "My First Article",
"language": "en",
"layout": { "columns": 1},
"components": [
{
"role": "title",
"text": "My First Article"
},
{
"role": "body",
"text": "This is just over the minimum amount of JSON required to create a valid article in Apple News Format. If you were to delete the dictionary enclosing this text, you'd be there."
}
],
"componentTextStyles": {
"fontName": "Lato",
"textColor": "#000",
"linkStyle": {
"highlight": {
"color": "#358fd4"
}
}
}
我下载了XCode和必要的Ruby宝石,以输入相关的命令行。如文档中所述,我的.papi文件格式正确,因为它成功获取了我的频道信息。根据Apple的自述文件,这是我必须输入以发表文章的命令:
papi-client article publish <Article Directory>
问题是,我不确定这篇文章的目录是什么,或者如何找到它。据我所知,我会创建类似上面的“article.json”文件,并可能将其用作目录。我甚至尝试过使用该文件的文件路径,但没有成功。有人可以告诉我接下来的步骤吗?
谢谢,
泰勒
答案 0 :(得分:0)
将文章与任何本地链接的文件(即bundle://)放在文件夹中,然后将此文件夹用作文章目录。