GithubHelp home page GithubHelp logo

Comments (4)

Nyholm avatar Nyholm commented on August 13, 2024

There is not. According to your link this is valid xml. You may submit any xml to any endpoint like this:

$xml='<share>
  <comment>Check out the LinkedIn Share API!</comment>
  <content>
    <title>LinkedIn Developers Documentation On Using the Share API</title>
    <description>Leverage the Share API to maximize engagement on user-generated content on LinkedIn</description>
    <submitted-url>https://developer.linkedin.com/documents/share-api</submitted-url>
    <submitted-image-url>http://m3.licdn.com/media/p/3/000/124/1a6/089a29a.png</submitted-image-url> 
  </content>
  <visibility> 
    <code>anyone</code> 
  </visibility>
</share>';

$linkedin->api('v1/people/~/shares', array('format'=>'xml'), 'POST', $xml);

from linkedin-api-client.

rajeshmeniya avatar rajeshmeniya commented on August 13, 2024

It returns below error :

Catchable Fatal Error: Argument 4 passed to HappyR\LinkedIn\LinkedIn::api() must be of the type array, string given, called in /home/rajesh/web/projects/hm/src/OneTwoDigital/HealthManagementBundle/Controller/DefaultController.php on line 85 and defined in /home/rajesh/web/projects/hm/vendor/happyr/linkedin-api-client/src/HappyR/LinkedIn/LinkedIn.php line 145

from linkedin-api-client.

Nyholm avatar Nyholm commented on August 13, 2024

That is a bug. We should not require an array there.

from linkedin-api-client.

rajeshmeniya avatar rajeshmeniya commented on August 13, 2024

right, solved using following change

diff --git a/src/HappyR/LinkedIn/LinkedIn.php b/src/HappyR/LinkedIn/LinkedIn.php
index 1cddba0..45931e2 100644
--- a/src/HappyR/LinkedIn/LinkedIn.php
+++ b/src/HappyR/LinkedIn/LinkedIn.php
@@ -142,7 +142,7 @@ class LinkedIn
* @return string|array The default is an assoc array from json_decode. But if you specify
* $urlParams['format']='xml' you will get the raw result.
*/
-- public function api($resource, array $urlParams=array(), $method='GET', array $postParams=array())
++ public function api($resource, array $urlParams=array(), $method='GET', $postParams=array())
{

from linkedin-api-client.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.