תמיכת The Movie Database

Hello, how is it possible to send a request for a movie to the APi?

I found this, but where is the part where i can add the name i am looking for?

Example: SampleName -> Where have i to add this at the api?

var request = System.Net.WebRequest.Create("http://private-d576-themoviedb.apiary.io/3/movie/{id}") as System.Net.HttpWebRequest;
    request.Method = "GET";
                request.Accept = ""application/json"";
              request.ContentLength = 0;
string responseContent;
using (var response = request.GetResponse() as System.Net.HttpWebResponse) {
  using (var reader = new System.IO.StreamReader(response.GetResponseStream())) {
    responseContent = reader.ReadToEnd();
  }
}

3 תגובות (בדף 1 מתוך 1)

Jump to last post

A few things…

For title based searching, you're going to want to use the search endpoints. You can use the ?query parameter to do that. You'll also probably want to switch your request to the real production server, so a URL like this:

http://api.themoviedb.org/3/search/movie?api_key=###&query=x-men
var request = System.Net.WebRequest.Create("http://api.themoviedb.org/3/search/movie?api_key=###&query=x-men") as System.Net.HttpWebRequest;
    request.Method = "GET";
                request.Accept = ""application/json"";
              request.ContentLength = 0;
string responseContent;
using (var response = request.GetResponse() as System.Net.HttpWebResponse) {
  using (var reader = new System.IO.StreamReader(response.GetResponseStream())) {
    responseContent = reader.ReadToEnd();
  }
}

Cheers.

Is there any way to get a XML file back at my request?

No, our API is JSON only.

.לא מצאת סרט או סדרה? היכנס כדי ליצור אותם

עולמי

s התמקד בשורת החיפוש
p פתח תפריט פרופיל
esc סגור חלון פתוח
? פתח חלון קיצורי דרך של מקלדת

בדפי מדיה

b לך חזרה (או אל הורה אם ישים)
e לך אל דף עריכה

בדפי עונות

(חץ ימני) לך אל העונה הבאה
(חץ שמאלי) לך אל העונה הקודמת

בדפי סדרות

(חץ ימני) לך אל הפרק הבא
(חץ שמאלי) לך אל הפרק הקודם

בכל דפי תמונה

a פתח חלון הוספת תמונה

בכל דפי עריכה

t פתח בוחר תרגום
ctrl+ s הגש טופס

בדפי דיון

n צור דיון חדש
w עורר מעמד צפייה
p עורר ציבורי/פרטי
c עורר סגירה/פתיחה
a פתח פעילות
r השב אל דיון
l לך אל תשובה אחרונה
ctrl+ enter הגש את הודעתך
(חץ ימני) הדף הבא
(חץ שמאלי) הדף הקודם

הגדרות

?רוצה לדרג או להוסיף פריט אל רשימה

היכנס