我在下面有一个 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 gem,以输入相关的命令行。如文档中所述,我的 .papi 文件格式正确,因为它成功获取了我的频道信息。根据 Apple 的自述文件,这是我发布文章必须输入的命令:
papi-client article publish <Article Directory>
问题是,我不确定这篇文章目录到底是什么,或者如何找到它。据我所知,我会创建类似于上述“article.json”文件的内容,并可能将其用作目录。我什至尝试使用该文件的文件路径,但没有成功。我下一步要采取什么措施来实现这一目标?