Skip to content

Commit

Permalink
* В функции fbGetAccounts() снизил лимит на количество запрашиваемы…
Browse files Browse the repository at this point in the history
…х аккаунтов в одном запросе с 200 до 150
  • Loading branch information
selesnow committed Jun 7, 2023
1 parent fe035c2 commit e9ce822
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# rfacebookstat 2.9.4

* В функции `fbGetAccounts()` снизил лимит на количество запрашиваемых аккаунтов в одном запросе с 300 до 200, связано с ошибкой `Please reduce the amount of data you're asking for, then retry your request`.
* В функции `fbGetAccounts()` снизил лимит на количество запрашиваемых аккаунтов в одном запросе с 300 до 150, связано с ошибкой `Please reduce the amount of data you're asking for, then retry your request`.

# rfacebookstat 2.9.3

Expand Down
2 changes: 1 addition & 1 deletion R/fbGetAdAccounts.R
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ fbGetAdAccounts <- function(source_id = getOption("rfacebookstat.business_id"
# send request
answer <- GET(url,
query = list(fields = "id,name,account_id,account_status,amount_spent,created_time,balance,business_name,media_agency,currency,owner,partner,age,timezone_name,disable_reason,spend_cap",
limit = 200,
limit = 150,
access_token = access_token))

# attr
Expand Down

0 comments on commit e9ce822

Please sign in to comment.