echo "Error deleting/flagging post: The post id must be specified.";
     }
     break;
 case 'flagPost':
     /**
      * Handle flag 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']) && !empty($_GET['nType'])) {
         if ($_GET['nType'] == 'job' || $_GET['nType'] == 'promotion') {
             $response = $OBJ_linkedin->flagPost($_GET['nPostId'], $_GET['nType']);
             if ($response['success'] === TRUE) {
                 header('Location: ' . $_SERVER['PHP_SELF']);
             } else {
                 echo "Error flagging post: <br /><br />RESPONSE:<br /><br /><pre>" . print_r($response, TRUE) . "</pre>";
             }
         } else {
             echo "Error flagging post: The given type must be one of: job, promotion.";
         }
     } else {
         echo "Error flagging post: The post id and flag type must be specified.";
     }
     break;
 case 'followPost':
     /**
      * Handle follow post requests.