获取微信记账本数据_下一页
<p>[TOC]</p>
<h5>简要描述</h5>
<ul>
<li>获取微信记账本数据_下一页</li>
</ul>
<h5>请求URL</h5>
<ul>
<li><code>http://localhost:30001/GetLedger</code></li>
</ul>
<h5>请求方式</h5>
<ul>
<li>POST</li>
</ul>
<h5>参数</h5>
<table>
<thead>
<tr>
<th style="text-align: left;">参数名</th>
<th style="text-align: left;">必选</th>
<th style="text-align: left;">类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: left;">is_get_more</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">string</td>
<td>下一页填写1</td>
</tr>
<tr>
<td style="text-align: left;">limit</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">string</td>
<td>显示条数,最多40</td>
</tr>
<tr>
<td style="text-align: left;">month</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">string</td>
<td>月份</td>
</tr>
<tr>
<td style="text-align: left;">year</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">string</td>
<td>年度</td>
</tr>
<tr>
<td style="text-align: left;">search_after</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">string</td>
<td>上一页或首页获取而来</td>
</tr>
<tr>
<td style="text-align: left;">custom_session_key</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">string</td>
<td>上一页或首页获取而来</td>
</tr>
</tbody>
</table>
<h5>发送示例</h5>
<pre><code>{
   &quot;is_get_more&quot; : 1,
   &quot;limit&quot; : 40,
   &quot;month&quot; : 3,
   &quot;search_after&quot; : &quot;ChEKCWJpbGxfd....autwY=&quot;,
   &quot;custom_session_key&quot; : &quot;ABDzp6...=&quot;,
   &quot;year&quot; : 2024
}
</code></pre>
<h5>返回示例</h5>
<pre><code>{
    &quot;ret_code&quot;: 0,
    &quot;ret_msg&quot;: &quot;success&quot;,
    &quot;custom_session_key&quot;: &quot;ABDzp....=&quot;,
    &quot;sync_progress&quot;: 100,
    &quot;tips_info&quot;: 0,
    &quot;isgrant&quot;: 1,
    &quot;isregister&quot;: 1,
    &quot;check_interval&quot;: 1000,
    &quot;last_login_time&quot;: 1711001926,
    &quot;records_info&quot;: [
        {
            &quot;year&quot;: 2024,
            &quot;month&quot;: 3,
            &quot;incomes_balance&quot;: 2140420,
            &quot;outgoings_balance&quot;: 762810,
            &quot;days&quot;: [
                {
                    &quot;day_desc&quot;: &quot;3月19日 星期二&quot;,
                    &quot;incomes_balance&quot;: 56880,
                    &quot;outgoings_balance&quot;: 12251,
                    &quot;records&quot;: [
                        {
........略
    },
    &quot;classification_list&quot;: [],
    &quot;calendar_time&quot;: 1682870400,
    &quot;skip_grant_time&quot;: 0,
    &quot;register_time&quot;: 1698598293,
    &quot;tips_num&quot;: 6,
    &quot;need_get_more&quot;: true,
    &quot;search_after&quot;: &quot;ChEKCWJpbGxfdGl....Y=&quot;,
    &quot;downgrade_prompt_msg&quot;: {
        &quot;flag&quot;: 0
    },
    &quot;income_text_gray_tag&quot;: 2
}</code></pre>
<h5>返回参数说明</h5>
<table>
<thead>
<tr>
<th style="text-align: left;">参数名</th>
<th style="text-align: left;">类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: left;">custom_session_key</td>
<td style="text-align: left;">string</td>
<td>请求下一页会用到</td>
</tr>
<tr>
<td style="text-align: left;">search_after</td>
<td style="text-align: left;">string</td>
<td>请求下一页会用到</td>
</tr>
</tbody>
</table>