From LinkedIn developer forum thread I downloaded this sample: LinkedInAuth.rar.zip, it works.
When I use:
string response = _oauth.APIWebRequest(
"GET",
"http://api.linkedin.com/v1/people/~/group-memberships:(group:(id,name,counts-by-category))?membership-state=member",
null);
It returns all groups.
But when I use:
string response = _oauth.APIWebRequest(
"GET",
"http://api.linkedin.com/v1/groups/{2139884}/posts:(creation-timestamp,title,summary,creator:(first-name,last-name,picture-url,headline),likes,attachment:(image-url,content-domain,content-url,title,summary),relation-to-viewer)?category=discussion&order=recency&modified-since=1302727083000&count=5",
null);`
It returns the error:
400 bad request
I used a groups id hard-coded which exist and return by 1st. I tried to follow the documentation. Anyone face this problem before or I am missing something.
