1

Is it possible, using Twitter's Web Intents, to have a link that when clicked :

  • Opens a popup to send a tweet containing the link I have chosen (no problem so far, I have tried that and it works)
  • Then, once the tweet is sent, calls a js or php script ?
Donald Duck
  • 8,409
  • 22
  • 75
  • 99

1 Answers1

0

Twitter's Tweet Web Intent doesn't provide this functionality. You'd have to build a solution using either the REST or Streaming APIs. Even that would only work if the user's Tweets are public, or if they give you read access to their timeline.

Aaron Brager
  • 65,323
  • 19
  • 161
  • 287
  • Thanks! How about using twitter-api-php and sending the tweet with a custom form ? –  May 30 '15 at 16:16
  • 1
    @Gejii twitter-api-php is a wrapper around the REST API, so you should be able to build what you want with that. – Aaron Brager May 30 '15 at 16:22