Hi,
I'm running into the following issue when using the LinkedIn API from Go:
LinkedIn is using "(" and ")" to request specific fields from the API, see:
https://developer.linkedin.com/documents/understanding-field-selectors
When I use the url listed in the example:
I get the following error message:
{
"errorCode": 0,
"message": "[invalid.property.name]. Couldn't find property with name {:%28id,website-url,locations%29} in resource of type {Company}", "requestId": "1COW9HZ53U",
"status": 404,
"timestamp": 1364979752628
}
Go is automatically escaping the URL where LinkedIn does not want to this part of the URL escaped:
"When URL-encoding your resource URLs, ensure that the parenthesis used in selectors remain unescaped."
Now I could write a raw http client but I was hoping that there is an easier way to solve this issue?
Thanks,
Paul