PHP Classes

File: examples/image.php

Recommend this page to a friend!
  Classes of Saeb Khanzadeh   Gap SDP API   examples/image.php   Download  
File: examples/image.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Gap SDP API
Send messages with the Gap instant messenger
Author: By
Last change:
Date: 5 years ago
Size: 347 bytes
 

Contents

Class file image Download
<?php

require dirname(__FILE__) . '/../vendor/autoload.php';

use
Gap\SDP\Api;

$token = ""; // HERE YOUR TOKEN

$gm = new Api($token);

$chat_id = null;

$replyKeyboard = $gm->replyKeyboard([[['yes' => 'Like'], ['no' => 'unLike']], [['cancel' => 'Cancel']]]);

// send image
$gm->sendImage($chat_id, 'pic.jpg', 'Image caption', $replyKeyboard);