评论

错误代码:46001(不存在媒体数据)——有碰到并解决的xdjm吗?求助~~

发布文章类素材的时候出现如下错误: 从2020-04-10 22:00之后——2020-04-11 1:39分一直这样; 我的appid :wxd73b265d1b6b0a49 我的请求url

发布文章类素材的时候出现如下错误:

从2020-04-10 22:00之后——2020-04-11 1:39分一直这样;

我的appid :wxd73b265d1b6b0a49

我的请求url:https://lwtest.ydjclive.com/wechat/add_news

我的代码如下:

$accessToken = $this->getAccessToken();
$data = '{
            "articles": [{
                 "title": "asdfasdf",
                "thumb_media_id": "J4Z_B4nUWPkUVOHeXfXHIApcsYQeMqpOjlovUYn29qM",
                "author": "asdf",
                "digest": "sadfasfdfasd",
                "show_cover_pic": 1,
                "content": "asdfasdfasdfasfdasf",
                "need_open_comment":0,
                "only_fans_can_comment":0
            }]
       }';
$url = 'https://api.weixin.qq.com/cgi-bin/material/add_news?access_token='.$accessToken;
$res = $this->httpRequest($url,$data);
dd($res);

/*********************分割线*******************************/

用了第三方EasyWechat也是一样的错误,代码如下:

$app = Factory::officialAccount($options);
$material = $app->material;
$article = new Article([
    'title'   => '接口发布的文章测试',
    'author'  => 'Ken',
    'thumb_media_id'  => 'J4Z_B4nUWPkUVOHeXfXHIApcsYQeMqpOjlovUYn29qM',
    'show_cover' => 0,
    'content' => '内容随便填写内容随便填写内容随便填写内容随便填写内容随便填写内容随便填写内容随便填写',
]);

$res = $material->uploadArticle($article);

dd($res);


点赞 0
收藏
评论

1 个评论

登录 后发表内容