简体   繁体   中英

Retrieve Image From Rackspace CloudFiles CDN-Enabled Container with C# API

I'm using Rackspace Cloud Files API . I'm able to retrieve my images from a container which isn't CDN-enabled with the following code. When I try with a CDN-enabled one though, the container isn't found.

How do I retrieve files from a CDN-enabled container on Rackspace Cloud Files?

    var creds = new UserCredentials(username, api);
    var client = new CF_Client();
    Connection conn = new CF_Connection(creds, client);
    conn.Authenticate();

    var container = new CF_Container(conn, "TestContainer");
    var list = container.GetObjectList(true);

Thank you.

To follow up, I spoke to a Rackspace rep. He clarified that this container was created on the Dallas end-point, while the API only pulls from the default endpoint, (Chicago). I ended up ditching the bindings API and went directly with the REST one. HTH.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM