Package Data | |
---|---|
Maintainer Username: | ahmedash95 |
Maintainer Contact: | ahmed29329@gmail.com (Ahmed Ashraf) |
Package Create Date: | 2016-11-09 |
Package Last Update: | 2016-11-11 |
Language: | PHP |
License: | Unknown |
Last Refreshed: | 2024-11-10 15:03:51 |
Package Statistics | |
---|---|
Total Downloads: | 14 |
Monthly Downloads: | 1 |
Daily Downloads: | 0 |
Total Stars: | 0 |
Total Watchers: | 2 |
Total Forks: | 0 |
Total Open Issues: | 1 |
This package makes it easly to post on facebook using FacebookPoster Notification with Laravel 5.3
You can install this package via composer:
composer require laravel-notification-channels/facebook-poster
Next add the service provider to your config/app.php
:
...
'providers' => [
...
NotificationChannels\FacebookPoster\FacebookPosterServiceProvider::class,
],
...
You will need to create a Facebook app in order to use this channel. Within in this app you will find the APP Id and APP Secret Key
. Place them inside your .env
file. In order to load them, add this to your config/services.php
file:
...
'facebook_poster' => [
'app_id' => getenv('FACEBOOK_APP_ID'),
'app_secret' => getenv('FACEBOOK_APP_SECRET'),
'access_token' => getenv('FACEBOOK_ACCESS_TOKEN'),
]
...
This will load the Facebook app data from the .env
file. Make sure to use the same keys you have used there like FACEBOOK_APP_ID
.
To create a life time access token for your fan page, open the Graph Api Explorer on the right body heading, select your app then click on the get token button and select Get Page Access Token then select your page, after this add access_token parameter into the query string me?fields=id,name,access_token
then submit and copy the access token value to your env FACEBOOK_ACCESS_TOKEN.
Follow Laravel's documentation to add the channel to your Notification class.
use NotificationChannels\FacebookPoster\FacebookPosterChannel;
use NotificationChannels\FacebookPoster\FacebookPosterPost;
class NewsWasPublished extends Notification
{
/**
* Get the notification's delivery channels.
*
* @param mixed $notifiable
* @return array
*/
public function via($notifiable)
{
return [FacebookPosterChannel::class];
}
public function toFacebookPoster($notifiable) {
return new FacebookPosterPost('Laravel notifications are awesome!');
}
}
Take a closer look at the FacebookPosterPost
object. This is where the magic happens.
public function toFacebookPoster($notifiable) {
return new FacebookPosterPost('Laravel notifications are awesome!');
}
It is possible to publish link with your post too. You just have to pass the url to the withLink
method.
public function toFacebookPoster($notifiable) {
return (new FacebookPosterPost('Laravel notifications are awesom!'))->withLink('https://laravel.com');
}
It is possible to publish image with your post too. You just have to pass the image path to the withImage
method.
public function toFacebookPoster($notifiable) {
return (new FacebookPosterPost('Laravel notifications are awesom!'))->withImage('tayee.png');
}
Notice : withImage accepts absolute url not system paths like /home/user/downloads/image.png
It is also possible to publish video with your post too. You just have to pass the video path to the withVideo
method.
public function toFacebookPoster($notifiable) {
return (new FacebookPosterPost('Laravel notifications are awesom!'))
->withVideo('bedaer.mp4',[ 'title' => 'My First Video' , 'Description' => 'published by FacebookPoster.' ]);
}
Please see CHANGELOG for more information what has changed recently.
$ composer test
If you discover any security related issues, please email ahmed29329@gmail.com instead of using the issue tracker.
Please see CONTRIBUTING for details.
The MIT License (MIT). Please see License File for more information.