Coder Social home page Coder Social logo

Comments (7)

innova avatar innova commented on July 29, 2024 1

Hi mogita
No need to download image from s3 bucket to your server. Following code works fine for me. I just create stream from amazon s3 image url then set it as post field.

    $image = file_get_contents('http://distilleryimage11.s3.amazonaws.com/d8f7dc28825b11e180d51231380fcd7e_7.jpg');
    $code = $tmhOAuth->request('POST', 'https://upload.twitter.com/1/statuses/update_with_media.json',
    array(
    'media[]'  => $image,
    'status'   => "Test uploading.".time() // Don't give up..
    ),
    true, // use auth
    true  // multipart
    );

Thanks

from tmhoauth.

mente avatar mente commented on July 29, 2024

Try using media without @. Probably curl tries to find file locally and fails to do it

from tmhoauth.

mogita avatar mogita commented on July 29, 2024

@mente I removed the @ sign and got "(403) Error creating status" response. Tried several different image sources, the error messages were the same. And thank you anyway =)

from tmhoauth.

mente avatar mente commented on July 29, 2024

lib won't make any magic, it's a simple wrapper over rest call. Check documentation. Looks like it doesn't support external images uploading. You will have to upload it first.

from tmhoauth.

mogita avatar mogita commented on July 29, 2024

@mente Thanks! It seems I have to download the image file first in order to upload.

from tmhoauth.

themattharris avatar themattharris commented on July 29, 2024

@mente thanks for helping with this one - appreciate you stepping in.

@mogita a little bit more background: the issue is that cURL itself, which tmhOAuth uses, doesn't support POSTing a file using a URL. instead the file being POSTed must be local to the script performing the upload - which means uploading to your server, and then to POSTing to Twitter. I have an example where I do this in https://github.com/themattharris/tmhOAuth/blob/master/examples/images.php.

hope that helps.

from tmhoauth.

themattharris avatar themattharris commented on July 29, 2024

gonna close this issue as it the answers above explain that you need to post the image from the host running the code, rather than posting via a URL.

from tmhoauth.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.