示例#1
0
     } else {
         echo "Error liking post: The post id must be specified.";
     }
     break;
 case 'removeSuggestedGroup':
     /**
      * Handle remove suggested group 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['nGroupId'])) {
         $response = $OBJ_linkedin->removeSuggestedGroup($_GET['nGroupId']);
         if ($response['success'] === TRUE) {
             header('Location: ' . $_SERVER['PHP_SELF']);
         } else {
             echo "Error removing suggested group: <br /><br />RESPONSE:<br /><br /><pre>" . print_r($response, TRUE) . "</pre>";
         }
     } 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()) {