測(cè)驗(yàn)接口

接口約定

  • 使用https
  • restful風(fēng)格
  • 用戶端:https://{域名}/api/{接口版本號(hào)}/{resource}/{resource_id}/{sub_resource}/{sub_resource_id}/{action}?{query_string}
  • 管理端:https://{域名}/admin/api/{接口版本號(hào)}/{resource}/{resource_id}/{sub_resource}/{sub_resource_id}/{action}?{query_string}
  • 測(cè)試環(huán)境域名babieta.xivan.cn
  • 正式環(huán)境域名待定
  • 公共參數(shù)放在header其障,如userid,session_key,unionid,version等
  • resource: exams

接口


GET /exams/{exams_id}/categories/{categories_id}/questions/{questions_id}

name cname type Description
用途 獲取測(cè)試題
方式 GET
版本號(hào) v1.0
exams_id first(首次測(cè)驗(yàn))/upgrade(解鎖升級(jí)測(cè)驗(yàn))
categories_id pronunciation(發(fā)音測(cè)試)/fluency(流利度測(cè)試)/express(表達(dá)測(cè)試)
questions_id 可選,目前沒用
請(qǐng)求數(shù)據(jù):

query_string 參數(shù)/可選參數(shù)

name cname type Description
limit 數(shù)目 int 獲取數(shù)量涂佃,默認(rèn)10
subject 數(shù)目 string 話題列表,簡(jiǎn)單形式(話題名:數(shù)量), 如subject=節(jié)日:1, 活動(dòng):1

curl -i "https://babieta.xivan.cn/api/v1.0/exams/first/categories/pronunciation/questions?limit=4&subject=節(jié)日:1, 活動(dòng):1" -H "userid:oslC94mGqAAEz6iWhKhL9dEY5l3o" -H "token:25e8ba0469c6f1c0c6dcd4fe952b8e4e"
wx.request({
      "url":"https://babieta.xivan.cn/api/v1.0/exams/first/categories/pronunciation/questions", 
      "method":"GET",
      "success": res =>{
        console.log(res)
      },
      "data":{limit:'4'},
      "dataType":"json", 
      "header": { "content-type":"application/x-www-form-urlencoded",
        "userid": "oslC94mGqAAEz6iWhKhL9dEY5l3o", "token":"25e8ba0469c6f1c0c6dcd4fe952b8e4e"},
      "complete": res => {
        console.log(res)
      }
    })
返回?cái)?shù)據(jù):
name cname type Description
code int 返回碼 0成功 非0失敗
msg string 錯(cuò)誤信息
list array<object> 測(cè)試題列表

object

name cname type Description
desc string 描述
title string 標(biāo)題
id string 題目id


發(fā)音

{
    "msg": "",
    "code": 0,
    "list": [{"desc":"Americans called her the \"Queen of Soul,\" and U.S. music industry magazine Billboard2, which maintains charts of popular American songs, lists Franklin as the second-most charted female artist in the chart's 59-year history.", "title":"", "id":2}]
}

流利度

{
    "msg": "",
    "code": 0,
    "list": [{"desc":"描述一個(gè)", "title":"APP", "id":4}, ...]
}

表達(dá)

{
    "msg": "",
    "code": 0,
    "list": [{"desc":"Why do some people like gambling at football, such as the World Cup?", "title":"科技", "id":65}]
}

POST /exams/{exams_id}/categories/{categories_id}/questions/{questions_id}/report_result

name cname type Description
用途 上報(bào)發(fā)音測(cè)試励翼、流利度測(cè)試、表達(dá)測(cè)試等測(cè)試題識(shí)別結(jié)果
方式 POST
版本號(hào) v1.0
exams_id first(首次測(cè)驗(yàn))/upgrade(解鎖升級(jí)測(cè)驗(yàn))
categories_id pronunciation(發(fā)音測(cè)試)/fluency(流利度測(cè)試)/express(表達(dá)測(cè)試)
action report_result
請(qǐng)求數(shù)據(jù):

body 參數(shù)/可選參數(shù)

name cname type Description
original_text 原文本 string
translate_text 用戶語音 string
level 用戶級(jí)別 int
index 階段索引 int

curl -XPOST https://babieta.xivan.cn/v1.0/exams/first/categories/pronunciation/questions/123/report_result    -d '{"original_text":"abc", "translate_text":"xxx", "level":0}' -H "userid:oslC94mGqAAEz6iWhKhL9dEY5l3o" -H "token:25e8ba0469c6f1c0c6dcd4fe952b8e4e"
wx.request({
      "url":"https://babieta.xivan.cn/v1.0/exams/first/categories/pronunciation/questions/123/report_result", 
      "method":"POST",
      "success": res =>{
        console.log(res)
      },
      "data":{original_text:"abc", translate_text:"xxx"},
      "dataType":"json", 
      "header": { "content-type":"application/json",
        "userid": "oslC94mGqAAEz6iWhKhL9dEY5l3o", "token":"25e8ba0469c6f1c0c6dcd4fe952b8e4e"},
      "complete": res => {
        console.log(res)
      }
    })
返回?cái)?shù)據(jù):
name cname type Description
code int 返回碼 0成功 非0失敗
msg string 錯(cuò)誤信息

{
    "code":0,
    "msg":""
}

GET /exams/{exams_id}/scores

name cname type Description
用途 獲取首測(cè)三個(gè)測(cè)驗(yàn)結(jié)果和總成績(jī)
版本號(hào) v1.0
exams_id first(首次測(cè)驗(yàn))/upgrade(解鎖升級(jí)測(cè)驗(yàn))
level 用戶級(jí)別 int

curl -XGET https://babieta.xivan.cn/v1.0/exams/first/score?level=5 -H "userid:oslC94mGqAAEz6iWhKhL9dEY5l3o" -H "token:25e8ba0469c6f1c0c6dcd4fe952b8e4e" 
wx.request({
      "url":"https://babieta.xivan.cn/v1.0/first_test/score", 
      "method":"GET",
      "success": res =>{
        console.log(res)
      },
      "data":{level:3},
      "dataType":"json", 
      "header": { "content-type":"application/json",
        "userid": "oslC94mGqAAEz6iWhKhL9dEY5l3o", "token":"25e8ba0469c6f1c0c6dcd4fe952b8e4e"},
      "complete": res => {
        console.log(res)
      }
    })
返回?cái)?shù)據(jù):
name cname type Description
code int 返回碼 0成功 非0失敗
msg string 錯(cuò)誤信息
pronunciation_score int 發(fā)音歲數(shù)
fluency_score int 流利度歲數(shù)
express_score int 表達(dá)歲數(shù)
integrated_score int 綜合歲數(shù)

{
    "code":0,
    "msg":"",
    "pronunciation_score":9,
    "fluency_score":8,
    "express_score":7,
    "integrated_score":8
}

POST /exams/{exams_id}/payment

name cname type Description
用途 當(dāng)前等級(jí)測(cè)驗(yàn)支付
方式 POST
版本號(hào) v1.0
exams_id upgrade(解鎖升級(jí)測(cè)驗(yàn))

curl -XPOST https://babieta.xivan.cn/v1.0/exams/upgrade/payment   -H "userid:oslC94mGqAAEz6iWhKhL9dEY5l3o" -H "token:25e8ba0469c6f1c0c6dcd4fe952b8e4e"
wx.request({
      "url":"https://babieta.xivan.cn/v1.0/exams/upgrade/payment", 
      "method":"POST",
      "success": res =>{
        console.log(res)
      },
      "data":{"level":3},
      "dataType":"json", 
      "header": { "content-type":"application/json",
        "userid": "oslC94mGqAAEz6iWhKhL9dEY5l3o", "token":"25e8ba0469c6f1c0c6dcd4fe952b8e4e"},
      "complete": res => {
        console.log(res)
      }
    })
返回?cái)?shù)據(jù):
name cname type Description
code int 返回碼 0成功 非0失敗
msg string 錯(cuò)誤信息

POST /exams/{exams_id}/retry

name cname type Description
用途 重新開始當(dāng)前測(cè)驗(yàn)
方式 POST
版本號(hào) v1.0
exams_id upgrade(解鎖升級(jí)測(cè)驗(yàn)) first(首測(cè))
請(qǐng)求數(shù)據(jù):

body 參數(shù)/可選參數(shù)

name cname type Description
level 用戶級(jí)別 int

curl -XPOST https://babieta.xivan.cn/v1.0/exams/upgrade/retry-H "userid:oslC94mGqAAEz6iWhKhL9dEY5l3o" -H "token:25e8ba0469c6f1c0c6dcd4fe952b8e4e" -d '{"level":3}'
wx.request({
      "url":"https://babieta.xivan.cn/v1.0/exams/upgrade/retry", 
      "method":"POST",
      "success": res =>{
        console.log(res)
      },
      "data":{level:3},
      "dataType":"json", 
      "header": { "content-type":"application/json",
        "userid": "oslC94mGqAAEz6iWhKhL9dEY5l3o", "token":"25e8ba0469c6f1c0c6dcd4fe952b8e4e"},
      "complete": res => {
        console.log(res)
      }
    })
返回?cái)?shù)據(jù):
name cname type Description
code int 返回碼 0成功 非0失敗
msg string 錯(cuò)誤信息

GET /exams/last_score

name cname type Description
用途 獲取首測(cè)三個(gè)測(cè)驗(yàn)結(jié)果和總成績(jī)
版本號(hào) v1.0

curl -XGET https://babieta.xivan.cn/v1.0/exams/last_score -H "userid:oslC94mGqAAEz6iWhKhL9dEY5l3o" -H "token:25e8ba0469c6f1c0c6dcd4fe952b8e4e" 
wx.request({
      "url":"https://babieta.xivan.cn/v1.0/exams/last_score", 
      "method":"GET",
      "success": res =>{
        console.log(res)
      },
      "data":{level:3},
      "dataType":"json", 
      "header": { "content-type":"application/json",
        "userid": "oslC94mGqAAEz6iWhKhL9dEY5l3o", "token":"25e8ba0469c6f1c0c6dcd4fe952b8e4e"},
      "complete": res => {
        console.log(res)
      }
    })
返回?cái)?shù)據(jù):
name cname type Description
code int 返回碼 0成功 非0失敗
msg string 錯(cuò)誤信息
pronunciation_score int 發(fā)音歲數(shù)
fluency_score int 流利度歲數(shù)
express_score int 表達(dá)歲數(shù)
integrated_score int 綜合歲數(shù)
exam_id string first:首測(cè)辜荠,upgrade:自測(cè)

{
    "code":0,
    "msg":"",
    "pronunciation_score":9,
    "fluency_score":8,
    "express_score":7,
    "integrated_score":8,
    "exam_id":"first"
}
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末汽抚,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子伯病,更是在濱河造成了極大的恐慌造烁,老刑警劉巖,帶你破解...
    沈念sama閱讀 206,723評(píng)論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件狱从,死亡現(xiàn)場(chǎng)離奇詭異膨蛮,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)季研,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,485評(píng)論 2 382
  • 文/潘曉璐 我一進(jìn)店門敞葛,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人与涡,你說我怎么就攤上這事惹谐。” “怎么了驼卖?”我有些...
    開封第一講書人閱讀 152,998評(píng)論 0 344
  • 文/不壞的土叔 我叫張陵氨肌,是天一觀的道長(zhǎng)。 經(jīng)常有香客問我酌畜,道長(zhǎng)怎囚,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 55,323評(píng)論 1 279
  • 正文 為了忘掉前任,我火速辦了婚禮恳守,結(jié)果婚禮上考婴,老公的妹妹穿的比我還像新娘。我一直安慰自己催烘,他們只是感情好沥阱,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,355評(píng)論 5 374
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著伊群,像睡著了一般考杉。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上舰始,一...
    開封第一講書人閱讀 49,079評(píng)論 1 285
  • 那天崇棠,我揣著相機(jī)與錄音,去河邊找鬼丸卷。 笑死易茬,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的及老。 我是一名探鬼主播抽莱,決...
    沈念sama閱讀 38,389評(píng)論 3 400
  • 文/蒼蘭香墨 我猛地睜開眼,長(zhǎng)吁一口氣:“原來是場(chǎng)噩夢(mèng)啊……” “哼骄恶!你這毒婦竟也來了食铐?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,019評(píng)論 0 259
  • 序言:老撾萬榮一對(duì)情侶失蹤僧鲁,失蹤者是張志新(化名)和其女友劉穎虐呻,沒想到半個(gè)月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體寞秃,經(jīng)...
    沈念sama閱讀 43,519評(píng)論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡斟叼,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 35,971評(píng)論 2 325
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了春寿。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片朗涩。...
    茶點(diǎn)故事閱讀 38,100評(píng)論 1 333
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖绑改,靈堂內(nèi)的尸體忽然破棺而出谢床,到底是詐尸還是另有隱情,我是刑警寧澤厘线,帶...
    沈念sama閱讀 33,738評(píng)論 4 324
  • 正文 年R本政府宣布识腿,位于F島的核電站,受9級(jí)特大地震影響造壮,放射性物質(zhì)發(fā)生泄漏渡讼。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,293評(píng)論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望成箫。 院中可真熱鬧栖雾,春花似錦、人聲如沸伟众。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,289評(píng)論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽凳厢。三九已至,卻和暖如春竞慢,著一層夾襖步出監(jiān)牢的瞬間先紫,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,517評(píng)論 1 262
  • 我被黑心中介騙來泰國(guó)打工筹煮, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留遮精,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 45,547評(píng)論 2 354
  • 正文 我出身青樓败潦,卻偏偏與公主長(zhǎng)得像本冲,于是被迫代替她去往敵國(guó)和親。 傳聞我的和親對(duì)象是個(gè)殘疾皇子劫扒,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,834評(píng)論 2 345

推薦閱讀更多精彩內(nèi)容