The Movie Database Support

I'm using Android, so I can't exactly copy the entire URL string that I'm using, but I'm using:

mClient = new AsyncHttpClient();
mParams = new RequestParams();

        mParams.put(page.toString(), "page"); // where page is an integer that starts at 1, in this case, it's 1
        mParams.put("myApiKey", "api_key");
        String requestUrl = baseUrl + nowPlaying;
        Toast.makeText(mContext, requestUrl, Toast.LENGTH_LONG).show();
        Log.d("TAG", requestUrl);
        mClient.get(baseUrl + nowPlaying, mParams, new JsonHttpResponseHandler() {
  @Override
            public void onSuccess(int statusCode, Header[] headers, JSONObject response) {
               try {
                   JSONArray moviesJson = response.getJSONArray("results");
                   String jsonString = moviesJson.toString();
                   Toast.makeText(mContext, jsonString, Toast.LENGTH_LONG).show();
                   mMovies = Movie.fromJson(moviesJson);
               } catch (JSONException e) {
                   e.printStackTrace();
               }
           }

           @Override
           public void onFailure(int statusCode, Header[] headers, Throwable throwable, JSONObject jsonObject) {
               Log.d("Failed: ", ""+statusCode);
               Log.d("Error : ", "" + throwable);
           }

In LogCat, I'm getting a 401 error... If you check my account, you'll see what my API key is, so I"m wondering why it's autofailing. I tried using CocoaRest Client with api_key, page as correct parameters and i'm still getting a 401.

2 replies (on page 1 of 1)

Jump to last post

You can mark this solved, I'm dumb.
For those curious: if you're doing TMDB to try out Android versus iOS, make sure you put parameters as key first, then value.

Noted! Thanks for the followup.

Can't find a movie or TV show? Login to create it.

Global

s focus the search bar
p open profile menu
esc close an open window
? open keyboard shortcut window

On media pages

b go back (or to parent when applicable)
e go to edit page

On TV season pages

(right arrow) go to next season
(left arrow) go to previous season

On TV episode pages

(right arrow) go to next episode
(left arrow) go to previous episode

On all image pages

a open add image window

On all edit pages

t open translation selector
ctrl+ s submit form

On discussion pages

n create new discussion
w toggle watching status
p toggle public/private
c toggle close/open
a open activity
r reply to discussion
l go to last reply
ctrl+ enter submit your message
(right arrow) next page
(left arrow) previous page

Settings

Want to rate or add this item to a list?

Login