更新日:これは数日先の一時的な問題でした。アップルニュースAPIの公開記事はFAILED_PROCESSINGとなりました
私はpython apple newsのapiクライアントを開発しました。記事をAppleのニュースチャンネルでプレビューするのに成功しました。 とにかく、それらの記事の状態をチェックすると、ほとんどがFAILED_PROCESSINGになります。 1つだけがLIVEになりましたが、イメージ(アニメーションGIF)はありませんでした。
エラーの詳細はありません。私は何が間違っているのか推測できません。記事はニュースプレビューツールでよく見えます。 誰かが手がかりを持っていますか?問題をデバッグする方法はありますか?
ありがとうございます!
>>>api_key = 'xxxxx'
>>>secret_key = 'xxxx'
>>>channel_id = 'xxxx'
>>>client = ApiClient(api_key, secret_key, channel_id=channel_id)
>>>articles = client.search_articles()
>>>articles
{u'data': [{u'accessoryText': None,
u'createdAt': u'2016-04-27T08:36:35Z',
u'id': u'xxxxx',
u'isCandidateToBeFeatured': False,
u'isDevelopingStory': False,
u'isPreview': True,
u'isSponsored': False,
u'links': {u'channel': u'https://news-api.apple.com/channels/xxxxx',
u'sections': [u'https://news-api.apple.com/sections/xxxxx'],
u'self': u'https://news-api.apple.com/articles/xxxxx'},
u'modifiedAt': u'2016-04-27T08:36:47Z',
u'revision': u'AAAAAAAAAAD//////////w==',
u'shareUrl': u'https://apple.news/xxxxxx',
u'state': u'FAILED_PROCESSING',
u'title': u'Test 1',
u'type': u'article'},
....
{u'accessoryText': None,
u'createdAt': u'2016-04-14T07:07:27Z',
u'id': u'xxxx',
u'isCandidateToBeFeatured': False,
u'isDevelopingStory': False,
u'isPreview': True,
u'isSponsored': False,
u'links': {u'channel': u'https://news-api.apple.com/channels/xxxx',
u'sections': [u'https://news-api.apple.com/sections/xxxx'],
u'self': u'https://news-api.apple.com/articles/xxxx'},
u'modifiedAt': u'2016-04-14T07:07:45Z',
u'revision': u'AAAAAAAAAAD//////////w==',
u'shareUrl': u'https://apple.news/xxxx',
u'state': u'LIVE',
u'title': u"Test 2",
u'type': u'article'}],
u'links': {u'next': None,
u'self': u'https://news-api.apple.com/channels/xxxx/articles'}}
バンドルイメージをアップロードするオプションまたはリモートURLを使用するオプションとしてのmy API。この問題は関連しておらず、一時的な問題に見えました。彼らはまだベータ版です。 – BangTheBank
これはうまくいきます。既にAPIを使用して数千の記事を公開しています。 – localheinz
はいこれは一時的な問題であることを忘れてしまいました! – BangTheBank