I am using java-api-wrapper to use the SoundCloud API in Java, and I want to access resources without authenticating.

In the readme examples, the usage is:

ApiWrapper wrapper = new ApiWrapper("client_id", "client_secret", null, null);

// Do I HAVE to do this?
wrapper.login("username", "password");

HttpResponse resp = wrapper.get(Request.to("/me"));
HttpResponse resp =
    wrapper.put(Request.to("/me")
        .with("user[full_name]", "Che Flute",
            "user[website]",   "http://cheflute.com")
        .withFile("user[avatar_data]", new File("flute.jpg")));

How can I do this?

有帮助吗?

解决方案

Soundcloud relies on tokens that are produced from logging in to fulfill your requests. Your client will be useless without one.

其他提示

From the API doc on github it looks like there is an exception thrown when there is no username or password. So I don't think you can use the API without authentication.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top