Esempio n. 1
0
     } else {
         echo "Error removing suggested group: The group id must be specified.";
     }
     break;
 case 'unlikePost':
     /**
      * Handle unlike post requests.
      */
     // check the session
     if (!oauth_session_exists()) {
         throw new LinkedInException('This script requires session support, which doesn\'t appear to be working correctly.');
     }
     $OBJ_linkedin = new LinkedIn($API_CONFIG);
     $OBJ_linkedin->setTokenAccess($_SESSION['oauth']['linkedin']['access']);
     if (!empty($_GET['nPostId'])) {
         $response = $OBJ_linkedin->likePost($_GET['nPostId'], FALSE);
         if ($response['success'] === TRUE) {
             header('Location: ' . $_SERVER['PHP_SELF']);
         } else {
             echo "Error unliking post: <br /><br />RESPONSE:<br /><br /><pre>" . print_r($response, TRUE) . "</pre>";
         }
     } else {
         echo "Error unliking post: The post id must be specified.";
     }
     break;
 case 'unfollowPost':
     /**
      * Handle unfollow post requests.
      */
     // check the session
     if (!oauth_session_exists()) {