Answer the question
In order to leave comments, you need to log in
How to send text to VK wall php?
Good afternoon, colleagues, I can’t understand the reasons for not posting the text on the wall.
below code
$text = 'Привет мир';
function curl( $url ){
$ch = curl_init( $url );
curl_setopt( $ch, CURLOPT_RETURNTRANSFER, true );
curl_setopt( $ch, CURLOPT_SSL_VERIFYHOST, false );
curl_setopt( $ch, CURLOPT_SSL_VERIFYPEER, false );
$response = curl_exec( $ch );
curl_close( $ch );
return $response;
}
$mylink = "https://api.vk.com/method/wall.post?&message=".$text."&access_token=токен";
$myjs1 = curl($mylink);
echo $text;
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question