Server : Apache System : Linux iZ2vcgyutqttsd1p850kl8Z 3.10.0-1160.92.1.el7.x86_64 #1 SMP Tue Jun 20 11:48:01 UTC 2023 x86_64 User : www ( 1000) PHP Version : 5.6.40 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv Directory : /www/wwwroot/saimikebio.com/mobile/include/modules/integrates/service/ |
<?php include_once ('RennServiceBase.php'); class ShareService extends RennServiceBase { /** * 分享人人网内部UGC资源,例如:日志、照片、相册、分享(基于已有分享再次进行分享) * <br />对应API:{$link http://dev.renren.com/API/v2/share/ugc/put } * @param Long $ugcOwnerId UGC所有者的用户ID * @param String $comment 分享时用户的评论,评论字数不能超过500字符 * @param Long $ugcId UGC的ID * @param UGCType $ugcType UGC的类型。 * @return Share 分享 */ function putShareUgc($ugcOwnerId, $comment, $ugcId, $ugcType) { $params = array(); $bodyParams = array(); $fileParams = array(); if (isset($ugcOwnerId)) { $params ['ugcOwnerId'] = $ugcOwnerId; } if (isset($comment)) { $params ['comment'] = $comment; } if (isset($ugcId)) { $params ['ugcId'] = $ugcId; } if (isset($ugcType)) { $params ['ugcType'] = $ugcType; } return $this->client->execute('/v2/share/ugc/put', 'POST', $params, $bodyParams, $fileParams); } /** * 获取人人推荐资源 * <br />对应API:{$link http://dev.renren.com/API/v2/share/hot/list } * @param Integer $pageSize 页面大小。取值范围1-50,默认大小20 * @param Integer $pageNumber 页码。取值大于零,默认值为1 * @param ShareType $shareType 分享类型 * @return Share 分享 */ function listShareHot($pageSize, $pageNumber, $shareType) { $params = array(); $bodyParams = array(); $fileParams = array(); if (isset($pageSize)) { $params ['pageSize'] = $pageSize; } if (isset($pageNumber)) { $params ['pageNumber'] = $pageNumber; } if (isset($shareType)) { $params ['shareType'] = $shareType; } return $this->client->execute('/v2/share/hot/list', 'GET', $params, $bodyParams, $fileParams); } /** * 分享人人网外部资源,例如:视频、图片等<br> 如果要分享一张本地照片到人人网(即上传),建议使用[http://wiki.dev.renren.com/wiki/v2/photo/upload /v2/photo/upload]接口 * <br />对应API:{$link http://dev.renren.com/API/v2/share/url/put } * @param String $comment 分享时用户的评论,评论字数不能超过500个字符 * @param String $url 分享资源的URL * @return Share 分享 */ function putShareUrl($comment, $url) { $params = array(); $bodyParams = array(); $fileParams = array(); if (isset($comment)) { $params ['comment'] = $comment; } if (isset($url)) { $params ['url'] = $url; } return $this->client->execute('/v2/share/url/put', 'POST', $params, $bodyParams, $fileParams); } /** * 获取某个用户的某个分享 * <br />对应API:{$link http://dev.renren.com/API/v2/share/get } * @param Long $shareId 分享ID * @param Long $ownerId 分享所有者ID * @return Share 分享 */ function getShare($shareId, $ownerId) { $params = array(); $bodyParams = array(); $fileParams = array(); if (isset($shareId)) { $params ['shareId'] = $shareId; } if (isset($ownerId)) { $params ['ownerId'] = $ownerId; } return $this->client->execute('/v2/share/get', 'GET', $params, $bodyParams, $fileParams); } /** * 以分页的方式获取某个用户的分享列表 * <br />对应API:{$link http://dev.renren.com/API/v2/share/list } * @param Long $ownerId 分享所有者ID * @param Integer $pageSize 页面大小。取值范围1-100,默认大小20 * @param Integer $pageNumber 页码。取值大于零,默认值为1 * @return Share 分享 */ function listShare($ownerId, $pageSize, $pageNumber) { $params = array(); $bodyParams = array(); $fileParams = array(); if (isset($ownerId)) { $params ['ownerId'] = $ownerId; } if (isset($pageSize)) { $params ['pageSize'] = $pageSize; } if (isset($pageNumber)) { $params ['pageNumber'] = $pageNumber; } return $this->client->execute('/v2/share/list', 'GET', $params, $bodyParams, $fileParams); } } ?>