PHP code example of indieweb / mention-client
1. Go to this page and download the library: Download indieweb/mention-client library . Choose the download type require .
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
indieweb / mention-client example snippets
$client = new IndieWeb\MentionClient();
$sent = $client->sendMentions($sourceURL);
echo "Sent $sent mentions\n";
$client = new IndieWeb\MentionClient();
$sent = $client->sendMentions($sourceURL, $sourceHTML);
echo "Sent $sent mentions\n";
$client = new IndieWeb\MentionClient();
$endpoint = $client->discoverWebmentionEndpoint($targetURL);
$endpoint = $client->discoverPingbackEndpoint($targetURL);
$client = new IndieWeb\MentionClient();
$response = $client->sendWebmention($sourceURL, $targetURL);
$response = $client->sendWebmention($sourceURL, $targetURL, ['vouch'=>$vouch]);
$client = new IndieWeb\MentionClient();
$supportsWebmention = $client->discoverWebmentionEndpoint($targetURL);
if($supportsWebmention) {
$client->sendWebmention($sourceURL, $targetURL);
}
$client = new IndieWeb\MentionClient();
$response = $client->sendPingback($sourceURL, $targetURL);
$client = new IndieWeb\MentionClient();
$supportsPingback = $client->discoverPingbackEndpoint($targetURL);
if($supportsPingback) {
$client->sendPingback($sourceURL, $targetURL);
}
$response = IndieWeb\MentionClient::sendWebmentionToEndpoint($endpoint, $source, $target);
$response = IndieWeb\MentionClient::sendWebmentionToEndpoint($endpoint, $source, $target, ['vouch'=>$vouch]);
$success = IndieWeb\MentionClient::sendPingbackToEndpoint($endpoint, $source, $target);
$client = new IndieWeb\MentionClient();
$urls = $client->findOutgoingLinks($html);
$client = new IndieWeb\MentionClient();
$parsed = \Mf2\parse($html, $sourceURL);
$urls = $client->findOutgoingLinks($parsed);
IndieWeb\MentionClient::setUserAgent('Custom user agent string');