1. Go to this page and download the library: Download r94ever/larasap 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/ */
r94ever / larasap example snippets
SendTo::Telegram('Hello, I\'m testing Laravel social auto posting');
SendTo::Telegram(
'Hello, I\'m testing Laravel social auto posting', // Video caption (Optional)
[
'type' => 'video', // Message type (Required)
'file' => 'http://example.com/let-me-be-your-lover.mp4', // Audio url (Required)
'duration' => 273, // Duration of sent video in seconds (Optional)
'width' => 1920, // Video width (Optional)
'height' => 1080 // Video height (Optional)
],
'' // Inline keyboard (Optional)
);
SendTo::Telegram(
'Hello, I\'m testing Laravel social auto posting', // Voice message caption (Optional)
[
'type' => 'voice', // Message type (Required)
'file' => 'https://upload.wikimedia.org/wikipedia/en/9/9f/Sample_of_%22Another_Day_in_Paradise%22.ogg', // Audio url (Required)
'duration' => 28 // Duration of the voice message in seconds (Optional)
],
'' // Inline keyboard (Optional)
);
SendTo::Telegram(
null,
[
'type' => 'media_group', // Message type (Required)
'files' => // Array describing photos and videos to be sent, must d)
'caption' => 'Laravel sccial auto posting' // Media caption (Optional)
],
[
'type' => 'video', // Media type (Required)
'media' => 'http://example.com/let-me-be-your-lover.mp4', // Media url (Required)
'caption' => 'Let me be your lover' // Media caption (Optional)
]
]
]
);
SendTo::Telegram(
null,
[
'type' => 'location', // Message type (Required)
'latitude' => 36.1664345, // Latitude of the location (Required)
'longitude' => 58.8209904, // Longitude of the location (Required)
'live_period' => 86400, // Period in seconds for which the location will be updated (Optional)
'' // Inline keyboard (Optional)
);
SendTo::Telegram(
null,
[
'type' => 'venue', // Message type (Required)
'latitude' => 36.166048, // Latitude of the location (Required)
'longitude' => 58.822121, // Longitude of the location (Required)
'title' => 'Khayyam', // Name of the venue (Required)
'address' => 'Neyshabur, Razavi Khorasan Province, Iran', // Address of the venue (Required)
'foursquare_id' => '', // Foursquare identifier of the venue (Optional)
'' // Inline keyboard (Optional)
);
SendTo::Telegram(
null,
[
'type' => 'contact', // Message type (Required)
'phone_number' => '+12025550149', // Contact's phone number (Required)
'first_name' => 'John', // Contact's first name (Required)
'last_name' => 'Doe', // Contact's last name (Optional)
'' // Inline keyboard (Optional)
]
);
SendTo::Twitter('Hello, I\'m testing Laravel social auto posting');
SendTo::Twitter(
'Hello, I\'m testing Laravel social auto posting',
[
public_path('photo-1.jpg'),
public_path('photo-2.jpg')
]
);
SendTo::Facebook(
'link',
[
'link' => 'https://github.com/toolkito/laravel-social-auto-posting',
'message' => 'Laravel social auto posting'
]
);
SendTo::Facebook(
'photo',
[
'photo' => public_path('img/1.jpg'),
'message' => 'Laravel social auto posting'
]
);
SendTo::Facebook(
'video',
[
'video' => public_path('upload/1.mp4'),
'title' => 'Let Me Be Your Lover',
'description' => 'Let Me Be Your Lover - Enrique Iglesias'
]
);
sh
php artisan vendor:publish --tag=larasap
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.