Check my code first
And it's breaking here: hj.Download(Aturl.Replace(" ", "%20")). I've tried without replacing blank space and failed every time.
Need expert's advice.
B4X:
Dim Aturl As String
Aturl = "https://graph.facebook.com/fql?q=SELECT post_id FROM stream WHERE type=46 AND created_time >" & FromDate & "AND created_time <" & ToDate & " AND source_id = me() AND actor_id = me()&access_token="&AccessToken
Dim hj As HttpJob
hj.Initialize("ID", Me)
hj.Download(Aturl.Replace(" ", "%20"))
And it's breaking here: hj.Download(Aturl.Replace(" ", "%20")). I've tried without replacing blank space and failed every time.
Need expert's advice.