You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Error in data.frame(from_id = json$from$id, from_name = json$from$name, :
arguments imply differing number of rows: 0, 1
Is it due to the same reason as this issue (#168), where Facebook is not returning the from_id and from_name fields due to the API update?
If so, could the method "postDataToDF" in utils.R be updated to include the ifelse used in replyDataToDF: from_id = ifelse(!is.null(json$from$id), json$from$id, NA), from_name = ifelse(!is.null(json$from$name), json$from$name, NA),
The text was updated successfully, but these errors were encountered:
The getPost() function responds with an error:
Is it due to the same reason as this issue (#168), where Facebook is not returning the from_id and from_name fields due to the API update?
If so, could the method "postDataToDF" in utils.R be updated to include the ifelse used in replyDataToDF:
from_id = ifelse(!is.null(json$from$id), json$from$id, NA), from_name = ifelse(!is.null(json$from$name), json$from$name, NA),
The text was updated successfully, but these errors were encountered: