I've scoured the depths of the internet in search of a solution to my problem, but none seem to fit what I need.
My goal is to retrieve historical follower data from LinkedIn's API using this call: ${companyId}/historical-follow-statistics?time-granularity=day&start-timestamp=${from}&end-timestamp=${to}&format=json in my Node/Express application. I made sure my headers are set like this: Authorization: Bearer 'mytoken' (obtained through an OAuth2 login).
However, every time I make the request, I receive this error code:
{
"errorCode": 0,
"message": "Internal service error",
"requestId": "22BM2KPRXF",
"status": 500,
"timestamp": 1489395675897
}
I have no trouble accessing other endpoints.
I believe I'm following the documentation accurately:
So my question remains: What am I missing here? Is there an issue with that specific endpoint?