jublo / codebird-php

Easy access to the Twitter REST API, Direct Messages API, Account Activity API, TON (Object Nest) API and Twitter Ads API — all from one PHP library.
https://www.jublo.net/projects/codebird/php
GNU General Public License v3.0
775 stars 237 forks source link

how to pass URl in status? #257

Open kaur-sandeep opened 4 years ago

kaur-sandeep commented 4 years ago

We are using codebird-php sdk to send feed data of my website to twitter account. we are using below code:- $params = array( 'status' => $message.' '.$price.' https://www.caradonna.com/specials', 'media_ids' => $mediaID ); //post the tweet with codebird $reply = $cb->statuses_update($params); we want to send URL with status.Page URL can be long. Kindly Tell us the solution how we can send Website page URL. Thanks!!