I have tracked the issue to the file: lib/api/fetch/personal/user-media/class-get.php, line 230.
Apparently, add_query_arg is adding a space between the protocol and the url of instagram (https:// graph.instagram...
) for reasons unknown.
I have added a dirty hack under it: $url = strtr($url, ' ', '');
and it worked. Now I have an account issue, but that’s on me and my client, so no problem.
-
This reply was modified 1 year, 7 months ago by delcano.