溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶(hù)服務(wù)條款》

如何在微信小程序中訪問(wèn)豆瓣電影

發(fā)布時(shí)間:2022-04-20 15:27:15 來(lái)源:億速云 閱讀:260 作者:iii 欄目:大數(shù)據(jù)

本文小編為大家詳細(xì)介紹“如何在微信小程序中訪問(wèn)豆瓣電影”,內(nèi)容詳細(xì),步驟清晰,細(xì)節(jié)處理妥當(dāng),希望這篇“如何在微信小程序中訪問(wèn)豆瓣電影”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來(lái)學(xué)習(xí)新知識(shí)吧。

1.設(shè)置nginx代理:

在nginx.conf加入以下配置:

location /v2/
{ 
proxy_store off; proxy_redirect off;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Real-IP $remote_addr; 
proxy_set_header Referer 'no-referrer-when-downgrade'; 
proxy_set_header User-Agent 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36'; 
proxy_connect_timeout 600;
proxy_read_timeout 600;
proxy_send_timeout 600;
proxy_pass https://api.douban.com/v2/; 
}

重啟nginx

修改小程序那邊的請(qǐng)求路徑為http://localhost/v2/movie/top2502.

2.更改官方域名:

替換官方給的域名http://api.douban.comhttps://douban.uieee.com,https://douban.uieee.com是某大佬搭建的代理,相當(dāng)于別人替你去做了方法一的事情,你只需要搬過(guò)來(lái)用就行了。

似乎可以了~我們來(lái)看看現(xiàn)在獲取到了data沒(méi)有

如何在微信小程序中訪問(wèn)豆瓣電影

還差一步,修改請(qǐng)求頭

header:{
   "Content-Type":"application/xml"
  },

再來(lái)看看吧~

如何在微信小程序中訪問(wèn)豆瓣電影

獲取一下杭州的熱映電影的前四個(gè)是什么吧:

onLoad() {
  uni.request({
   url: 'https://douban.uieee.com/v2/movie/in_theaters',
   method: 'GET',
   header:{
    "Content-Type":"application/xml"
   },
   data: {
    start: 0,
    count: 4,
    city: '杭州'
   },
   success: res => {
    console.log(res)
   },
   fail: () => {},
   complete: () => {}
  });
 },

附上豆瓣電影的常用接口:

1.獲取正在熱映的電影:https://douban.uieee.com/v2/movie/in_theaters

訪問(wèn)參數(shù):

start : 數(shù)據(jù)的開(kāi)始項(xiàng)

count:?jiǎn)雾?yè)條數(shù)

city:城市

2.獲取電影Top250:https://douban.uieee.com/v2/movie/top250

訪問(wèn)參數(shù):

start : 數(shù)據(jù)的開(kāi)始項(xiàng)

count:?jiǎn)雾?yè)條數(shù)

3.獲取即將上映電影:https://douban.uieee.com/v2/movie/coming_soon

訪問(wèn)參數(shù):

start : 數(shù)據(jù)的開(kāi)始項(xiàng)

count:?jiǎn)雾?yè)條數(shù)

4.電影搜索:https://douban.uieee.com/v2/movie/search

訪問(wèn)參數(shù):

start : 數(shù)據(jù)的開(kāi)始項(xiàng)

count:?jiǎn)雾?yè)條數(shù)

q:要搜索的電影關(guān)鍵字

tag:要搜索的電影的標(biāo)簽

5.電影詳情:https://douban.uieee.com/v2/movie/subject/:id

讀到這里,這篇“如何在微信小程序中訪問(wèn)豆瓣電影”文章已經(jīng)介紹完畢,想要掌握這篇文章的知識(shí)點(diǎn)還需要大家自己動(dòng)手實(shí)踐使用過(guò)才能領(lǐng)會(huì),如果想了解更多相關(guān)內(nèi)容的文章,歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI