mirror of
https://gitee.com/zoujingli/WeChatDeveloper.git
synced 2025-04-05 19:41:44 +08:00
[更新]接口测试校验修改
This commit is contained in:
parent
d06b3466ab
commit
23633f58eb
@ -111,14 +111,14 @@ class Tools
|
||||
* @return \CURLFile|string
|
||||
* @throws LocalCacheException
|
||||
*/
|
||||
public static function createCurlFile($filename, $mimetype = '', $postname = '')
|
||||
public static function createCurlFile($filename, $mimetype = null, $postname = null)
|
||||
{
|
||||
$basename = $postname || basename($filename);
|
||||
$basemine = $mimetype || self::getExtMine(pathinfo($filename, 4));
|
||||
is_null($postname) && $postname = basename($filename);
|
||||
is_null($mimetype) && $mimetype = self::getExtMine(pathinfo($filename, 4));
|
||||
if (function_exists('curl_file_create')) {
|
||||
return curl_file_create($filename, $basemine, $basename);
|
||||
return curl_file_create($filename, $mimetype, $postname);
|
||||
}
|
||||
return "@{$filename};filename={$basename};type={$basemine}";
|
||||
return "@{$filename};filename={$postname};type={$mimetype}";
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -33,7 +33,7 @@ class Media extends Wechat
|
||||
* @throws Exceptions\LocalCacheException
|
||||
* @throws InvalidResponseException
|
||||
*/
|
||||
public function upload($filename, $type = 'image')
|
||||
public function add($filename, $type = 'image')
|
||||
{
|
||||
if (!in_array($type, ['image', 'voice', 'video', 'thumb'])) {
|
||||
throw new InvalidResponseException('Invalid Media Type.', '0');
|
||||
@ -171,7 +171,7 @@ class Media extends Wechat
|
||||
* @throws Exceptions\LocalCacheException
|
||||
* @throws InvalidResponseException
|
||||
*/
|
||||
public function batchGetMaterial($type, $offset = 0, $count = 20)
|
||||
public function batchGetMaterial($type = 'image', $offset = 0, $count = 20)
|
||||
{
|
||||
if (!in_array($type, ['image', 'voice', 'video', 'news'])) {
|
||||
throw new InvalidResponseException('Invalid Media Type.', '0');
|
||||
|
@ -32,7 +32,7 @@ class User extends Wechat
|
||||
* @throws Exceptions\InvalidResponseException
|
||||
* @throws Exceptions\LocalCacheException
|
||||
*/
|
||||
public function updatereMark($openid, $remark)
|
||||
public function updateMark($openid, $remark)
|
||||
{
|
||||
$url = 'https://api.weixin.qq.com/cgi-bin/user/info/updateremark?access_token=ACCESS_TOKEN';
|
||||
$this->registerApi($url, __FUNCTION__, func_get_args());
|
||||
|
Loading…
x
Reference in New Issue
Block a user