kazist/larasap

Laravel 社交自动发布(Larasap)让您能够自动将所有内容发布到社交网络,例如 Telegram 频道和 Twitter。

V1.2.6 2019-06-18 14:05 UTC

This package is auto-updated.

Last update: 2024-09-19 16:37:45 UTC


README

Build Status GitHub tag

🌈 简介

这是一个 Laravel 包,可以将您的内容发布到社交网络,例如:

🚀 特性

  • 🍒 简单。易于使用。
  • 📝 向 Telegram 频道发送文本消息
  • 📷 向 Telegram 频道发送照片
  • 🎵 向 Telegram 频道发送音频
  • 📖 向 Telegram 频道发送文档
  • 📺 向 Telegram 频道发送视频
  • 🔊 向 Telegram 频道发送语音
  • 🎴 将一组照片或视频作为相册发送到 Telegram 频道
  • 📍 向 Telegram 发送位置
  • 📌 向 Telegram 发送地点
  • 📞 向 Telegram 发送联系人
  • 🌐 向 Telegram 频道发送带有内联键盘的消息
  • ✨ 向 Twitter 发送文本和媒体
  • 🎉 向 Facebook 发送文本和媒体

🔨 安装

  1. 通过 composer 下载并安装包
composer require toolkito/larasap
  1. 运行以下命令以发布包配置文件:config\larasap.php
php artisan vendor:publish --tag=larasap

🔌 配置

config\larasap.php 中设置社交网络信息。

🕹 使用

首先,在您的控制器中添加 use Toolkito\Larasap\SendTo;

然后,向您的 Telegram 频道或 Twitter 账户发送消息。

🚩 路线图

  • 改进测试和覆盖率
  • 提高性能

🌱 快速示例

⭐ Telegram 示例

📝 向 Telegram 发送文本消息

SendTo::Telegram('Hello, I\'m testing Laravel social auto posting');

📷 向 Telegram 发送照片

SendTo::Telegram(
    'Hello, I\'m testing Laravel social auto posting', // Photo caption (Optional)
    [
        'type' => 'photo', // Message type (Required)
        'file' => 'https://i.imgur.com/j6bzKQc.jpg' // Image url (Required)
    ],
    '' // Inline keyboard (Optional)
);

🎵 向 Telegram 发送音频

SendTo::Telegram(
 'Hello, I\'m testing Laravel social auto posting', // Audio caption (Optional)
 [
     'type' => 'audio', // Message type (Required)
     'file' => 'http://example.com/let-me-be-your-lover.mp3', // Audio url (Required) 
     'duration' => 208, // Duration of the audio in seconds (Optional)
     'performer' => 'Enrique Iglesias', // Performer (Optional)
     'title' => 'Let Me Be Your Lover' // Track name (Optional)
 ],
'' // Inline keyboard (Optional)
);

📖 向 Telegram 发送文档

SendTo::Telegram(
   'Hello, I\'m testing Laravel social auto posting', // Document caption
   [
       'type' => 'document', // Message type (Required)
       'file' => 'http://example.com/larasap.pdf', // Document url (Required)
   ],
  '' // Inline keyboard (Optional)
);

📺 向 Telegram 发送视频

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)
);

🔊 向 Telegram 发送语音

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)
);

🎴 向 Telegram 发送媒体组

SendTo::Telegram(
   null,
   [
       'type' => 'media_group', // Message type (Required)
       'files' => // Array describing photos and videos to be sent, must include 2–10 items
       [
           [
               'type' => 'photo', // Media type (Required)
               'media' => 'https://i.imgur.com/j6bzKQc.jpg', // Media url (Required)
               '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)
           ]
       ]
   ]
);

📍 向 Telegram 发送地图上的点

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)
);

📌 向 Telegram 发送有关地点的信息

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)
);

📞 向 Telegram 发送电话联系人

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)
    ]
);

🌐 向 Telegram 发送带有内联按钮的消息

SendTo::Telegram(
    'Laravel social auto posting',
    '',
    [
        [
            [
                'text' => 'Github',
                'url' => 'https://github.com/toolkito/laravel-social-auto-posting'
            ]
        ],
        [
            [
                'text' => 'Download',
                'url' => 'https://github.com/toolkito/laravel-social-auto-posting/archive/master.zip'
            ],
        ]
    ]
);

或者

SendTo::Telegram(
    'Laravel social auto posting',
    '',
    [
        [
            [
                'text' => 'Github',
                'url' => 'https://github.com/toolkito/laravel-social-auto-posting'
            ],
            [
                'text' => 'Download',
                'url' => 'https://github.com/toolkito/laravel-social-auto-posting/archive/master.zip'
            ],
        ]
    ]
);

⭐ Twitter 示例

✨ 文本推文

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')
    ]
);

⭐ Facebook 示例

🎉 向 Facebook 页面发送链接

SendTo::Facebook(
    'link',
    [
        'link' => 'https://github.com/toolkito/laravel-social-auto-posting',
        'message' => 'Laravel social auto posting'
    ]
);

🎉 向 Facebook 页面发送照片

SendTo::Facebook(
    'photo',
    [
        'photo' => public_path('img/1.jpg'),
        'message' => 'Laravel social auto posting'
    ]
);

🎉 向 Facebook 页面发送视频

SendTo::Facebook(
    'video',
    [
        'video' => public_path('upload/1.mp4'),
        'title' => 'Let Me Be Your Lover',
        'description' => 'Let Me Be Your Lover - Enrique Iglesias'
    ]
);