您可以使用 Threads API 讓用戶能夠在 Threads 上代表個人建立和發佈內容,並在您的應用程式中只對貼文建立者顯示這些貼文。
Calls within 24 hours = 4800 * Number of Impressions
720000 * number_of_impressions for total_cputime
2880000 * Number of Impressions for total_time
Threads 個人檔案限制在連續 24 小時內,API 只能發佈 250 則貼文。輪播廣告計為單一貼文。嘗試發佈影音內容容器時,POST /{threads-user-id}/threads_publish
端點會強制執行此限制。建議您的應用程式也強制執行發佈速率限制,尤其是如果您的應用程式允許應用程式用戶排定未來發佈貼文的時程。
若要檢查個人檔案目前的 Threads API 速率限制用量,請查詢 GET /{threads-user-id}/threads_publishing_limit
端點。
注意:此端點需要 threads_basic
和 threads_content_publish
權限。
名稱 | 說明 |
---|---|
| 過去 24 小時的 Threads 發佈計數。 |
| Threads 發佈速率限制配置物件,其中包含 |
curl -s -X GET \ "https:graph.threads.net/v1.0/<THREADS_USER_ID>/threads_publishing_limit?fields=quota_usage,config&access_token=<ACCESS_TOKEN>"
{ "data": [ { "quota_usage": 4, "config": { "quota_total": 250, "quota_duration": 86400 } } ] }
Threads 個人檔案限制在連續 24 小時內,只能回覆 1,000 次。
若要檢查個人檔案目前的 Threads 回覆速率限制用量,請查詢 GET /{threads-user-id}/threads_publishing_limit
端點。詳情請參閱回覆管理文件。
注意:此端點需要 threads_basic
、threads_content_publish
和 threads_manage_replies
權限。
名稱 | 說明 |
---|---|
| 過去 24 小時的 Threads 回覆發佈計數。 |
| Threads 回覆發佈速率限制配置物件,其中包含 |
curl -s -X GET \ "https://graph.threads.net/v1.0/<THREADS_USER_ID>/threads_publishing_limit?fields=reply_quota_usage,reply_config&access_token=<ACCESS_TOKEN>"
{ "data": [ { "reply_quota_usage": 1, "reply_config": { "quota_total": 1000, "quota_duration": 86400 } } ] }
Threads 個人檔案限制在連續 24 小時內,只能刪除 100 次。
若要檢查個人檔案目前的 Threads 刪除速率限制用量,請查詢 GET /{threads-user-id}/threads_publishing_limit
端點。詳情請參閱刪除貼文文件。
注意:此端點需要 threads_basic
和 threads_delete
權限。
名稱 | 說明 |
---|---|
| 過去 24 小時的 Threads 刪除計數。 |
| Threads 刪除速率限制配置物件,其中包含 |
curl -s -X GET \ "https://graph.threads.net/v1.0/<THREADS_USER_ID>/threads_publishing_limit?fields=delete_quota_usage,delete_config&access_token=<ACCESS_TOKEN>"
{ "data": [ { "delete_quota_usage": 1, "delete_config": { "quota_total": 100, "quota_duration": 86400 } } ] }
Threads 個人檔案限制在連續 24 小時內,只能搜尋地點 500 次。
若要檢查個人檔案目前的 Threads 地點搜尋速率限制用量,請查詢 GET /{threads-user-id}/threads_publishing_limit
端點。詳情請參閱地點搜尋文件。
注意:此端點需要 threads_basic
和 threads_location_tagging
權限。
名稱 | 說明 |
---|---|
| 過去 24 小時的 Threads 地點搜尋計數。 |
| Threads 地點搜尋速率限制配置物件,其中包含 |
curl -s -X GET \ "https://graph.threads.net/v1.0/<THREADS_USER_ID>/threads_publishing_limit?fields=location_search_quota_usage,location_search_config&access_token=<ACCESS_TOKEN>"
{ "data": [ { "location_search_quota_usage": 1, "location_search_config": { "quota_total": 500, "quota_duration": 86400 } } ] }