当我通过unificationegine发送消息时,我得到这个error.But,我的密码是正确的
UEUser.php第74行中的异常:您输入的密码不正确。请再试一次。
我正在使用这个格式的整个API。
Instagram用户名和密码(username=LOGIN_USER_NAME和password=LOGIN_USER_PASSWORD)
$con = $access_token ."@instagram.com/?username=rajneesh8368&password='testing1'";
$connection = $user->add_connection("instagramBoard", "instagram", $con);
$options = array(
"receivers" => array(
array(
"name"=> "Me"
)
),
"message"=>array(
"subject"=>"Transparentcom testing fine",
"body"=> "Testing",
"image"=> 'http://politibits.blogs.tuscaloosanews.com/files/2010/07/sanford_big_dummy_navy_shirt.jpg',
"link"=>array(
"uri"=> '',
"description"=> "",
"title"=>"Click here for view"
)
)
);
//Send the message and get their uris
$uris = $connection->send_message($options);发布于 2017-02-06 05:04:58
随着SDK (https://github.com/unifiedinbox/ue-php-sdk)的更新版本,我们可以发布到instagram。
我们可以看到,您现在可以在添加连接时指定可选参数。
对于intagram,每个连接的可选参数在'Add connection‘部分https://developer.unificationengine.com/下指定,可选的params是"username“和"password”。
https://stackoverflow.com/questions/41982175
复制相似问题