partner: Indicate whether you belong to the Partnership Program. Values: 0 or 1
Returns
There are two possible responses to a successful submittal.
One, your post has been created and is visibile immediately. In this case you have most likely posted to an unmoderated group.
Two, your post has been accepted by the API but is pending approval by the group moderator, in which case you will not see your post until it has bene approved.
Details
You must include a minimum of a discussion title, discussion summary, and content title.
Examples
## Not run:my.groups <- getGroups(in.auth)id <- my.groups$group_id[1]disc.title <-"Test connecting to the LinkedIn API via R"disc.summary <- "Im creating an R package to connect to the LinkedIn API,+ this is a test post from R!"
url <-"https://github.com/mpiccirilli"content.desc <- "Dev version of access to LinkedIn API via R.
+ Collaboration is welcomed!"
submitGroupPost(in.auth, group_id=id, disc_title=disc.title,disc_summary=disc.summary, content_url=url, content_desc=content.desc)## End(Not run)