本文整理汇总了PHP中LinkedIn::comment方法的典型用法代码示例。如果您正苦于以下问题:PHP LinkedIn::comment方法的具体用法?PHP LinkedIn::comment怎么用?PHP LinkedIn::comment使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类LinkedIn
的用法示例。
在下文中一共展示了LinkedIn::comment方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: define
define('UPDATE_COUNT', 10);
// set index
$_REQUEST[LINKEDIN::_GET_TYPE] = isset($_REQUEST[LINKEDIN::_GET_TYPE]) ? $_REQUEST[LINKEDIN::_GET_TYPE] : '';
switch ($_REQUEST[LINKEDIN::_GET_TYPE]) {
case 'comment':
/**
* Handle comment 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($_POST['nkey'])) {
$response = $OBJ_linkedin->comment($_POST['nkey'], $_POST['scomment']);
if ($response['success'] === TRUE) {
// comment posted
header('Location: ' . $_SERVER['PHP_SELF']);
} else {
// problem with comment
echo "Error commenting on update:<br /><br />RESPONSE:<br /><br /><pre>" . print_r($response, TRUE) . "</pre><br /><br />LINKEDIN OBJ:<br /><br /><pre>" . print_r($OBJ_linkedin, TRUE) . "</pre>";
}
} else {
echo "You must supply a network update key to comment on an update.";
}
break;
case 'initiate':
/**
* Handle user initiated LinkedIn connection, create the LinkedIn object.
*/