Giter VIP home page Giter VIP logo

Comments (6)

haktansuren avatar haktansuren commented on July 28, 2024 1

Simply replace {IMAGE_URL} and {API_KEY} accordingly @shakaran...

$ch = curl_init();

curl_setopt($ch, CURLOPT_URL, "https://api.imgix.com/v2/image/purger");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, "{\"url\":\"{IMAGE_URL}\"}");
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_USERPWD, {API_KEY});

$headers = array();
$headers[] = "Content-Type: application/json";
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);

$result = curl_exec($ch);
if (curl_errno($ch)) {
    echo 'Error:' . curl_error($ch);
}
curl_close ($ch);

from imgix-php.

jayeb avatar jayeb commented on July 28, 2024 1

Hey folks,

Sorry for the radio silence in this thread. Adding "native" purging into our core SDK libraries is something we're planning to do in the near-to-medium future. We resisted this for a long time because we didn't think that it was worth "cluttering" the core libraries with something that was easily accomplishable in any language with a native HTTP request, but we've since come around and now agree with @atrauzzi: abstracting the messy, curly bits away from common imgix actions such as purging is exactly what this library should be doing.

If anyone wants to take a swing at this we'd happily accept a PR, but otherwise stay tuned 😄.

from imgix-php.

atrauzzi avatar atrauzzi commented on July 28, 2024

Hmm, I think the desire is to have a method in the SDK that can abstract all this request building away.

(I need this as well)

from imgix-php.

zipus avatar zipus commented on July 28, 2024

Sorry @jayeb, you mark this as completed, I don't see any commit or any docs about a sdk method, only the http default request.

from imgix-php.

jayeb avatar jayeb commented on July 28, 2024

@zipus I'm no longer working on this project, but I'll tag in @sherwinski here!

from imgix-php.

sherwinski avatar sherwinski commented on July 28, 2024

Hey @zipus,
Nowadays we have a separate API for operations like purging, which we are planning to build out support for through a new set of SDKs. For right now we only have a JavaScript library for it, but if you're interested in a php-specific client let me know and I'll add a +1 to our item in the backlog for it.

from imgix-php.

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.