"미디어위키 API 최근바뀜 조회"의 두 판 사이의 차이

(새 문서: ==개요== ;미디어위키 API RecentChanges ;미디어위키 API 최근바뀜 조회 ==같이 보기== * 미디어위키 recentchanges 테이블 ==참고== * {{미디어위키...)
 
2번째 줄: 2번째 줄:
;미디어위키 API RecentChanges
;미디어위키 API RecentChanges
;미디어위키 API 최근바뀜 조회
;미디어위키 API 최근바뀜 조회
<source lang='console'>
$ curl -s 'https://en.wikipedia.org/w/api.php?action=query&format=json&list=recentchanges&rcprop=title|ids|sizes|flags|user&rclimit=2' | jq
{
  "batchcomplete": "",
  "continue": {
    "rccontinue": "20190929090736|1191858100",
    "continue": "-||"
  },
  "query": {
    "recentchanges": [
      {
        "type": "edit",
        "ns": 0,
        "title": "Swifts Creek",
        "pageid": 2217817,
        "revid": 918569105,
        "old_revid": 909089665,
        "rcid": 1191858102,
        "user": "Helenka King",
        "minor": "",
        "oldlen": 15294,
        "newlen": 15358
      },
      {
        "type": "edit",
        "ns": 0,
        "title": "List of awards and nominations received by Ricky Martin",
        "pageid": 20031221,
        "revid": 918569104,
        "old_revid": 918568282,
        "rcid": 1191858101,
        "user": "آرمین هویدایی",
        "oldlen": 88000,
        "newlen": 88474
      }
    ]
  }
}
</source>


==같이 보기==
==같이 보기==

2019년 9월 29일 (일) 18:08 판

1 개요

미디어위키 API RecentChanges
미디어위키 API 최근바뀜 조회
$ curl -s 'https://en.wikipedia.org/w/api.php?action=query&format=json&list=recentchanges&rcprop=title|ids|sizes|flags|user&rclimit=2' | jq
{
  "batchcomplete": "",
  "continue": {
    "rccontinue": "20190929090736|1191858100",
    "continue": "-||"
  },
  "query": {
    "recentchanges": [
      {
        "type": "edit",
        "ns": 0,
        "title": "Swifts Creek",
        "pageid": 2217817,
        "revid": 918569105,
        "old_revid": 909089665,
        "rcid": 1191858102,
        "user": "Helenka King",
        "minor": "",
        "oldlen": 15294,
        "newlen": 15358
      },
      {
        "type": "edit",
        "ns": 0,
        "title": "List of awards and nominations received by Ricky Martin",
        "pageid": 20031221,
        "revid": 918569104,
        "old_revid": 918568282,
        "rcid": 1191858101,
        "user": "آرمین هویدایی",
        "oldlen": 88000,
        "newlen": 88474
      }
    ]
  }
}

2 같이 보기

3 참고

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}