「スレッド」が探しているデフォルト値は、Disqus 内部スレッド ID (この場合は Wordpress ID ではありません) であることに注意してください。disqus_identifier
ただし、 Wordpress プラグイン (ブログ投稿のソース コードでその値を探します) を介して設定されたカスタムを使用するかforum=YOUR_SHORTNAME
、追加で渡す場合はスレッドに関連付けられた URL を使用できます。
スレッドを選択する方法は次のとおりです。
// Example using Disqus internal ID
POST https://disqus.com/api/3.0/posts/create.json
(your arguments)...
thread=12345678
// Example using disqus_identifier
POST https://disqus.com/api/3.0/posts/create.json
(your arguments)...
thread=ident:256 http://www.myblog.com/?p=256 // This is the schema used in the WP plugin
forum=YOUR_SHORTNAME
// Example using URL (this is the least reliable)
POST https://disqus.com/api/3.0/posts/create.json
(your arguments)...
thread=link:http://www.myblog.com/some_slug
forum=YOUR_SHORTNAME