当我通过unificationegine发送邮件时,我收到此错误。但我的密码是正确的
UEUser.php第74行中的异常:您输入的密码不正确。请再试一次。
我正在使用此格式的整个API
Instagram用户名和密码(用户名= LOGIN_USER_NAME和密码= 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);
答案 0 :(得分:0)
使用SDK的更新版本(https://github.com/unifiedinbox/ue-php-sdk),我们可以发布到Instagram。
我们可以看到您现在可以在添加连接时指定可选参数。
每个连接的可选参数在'添加连接'中的文档中指定。第https://developer.unificationengine.com/节 在插图的情况下,可选的参数是"用户名"和"密码"。