收藏图片到宝宝相册
<p><strong>简要描述:</strong> </p>
<ul>
<li>在浏览校园相册图片,将该图片收藏到宝宝相册</li>
</ul>
<p><strong>请求URL:</strong> </p>
<ul>
<li>` <a href="http://login.richx.cn/clazzAlbum/collectPhotoByApiKey.do">http://login.richx.cn/clazzAlbum/collectPhotoByApiKey.do</a></li>
</ul>
<p><strong>请求方式:</strong></p>
<ul>
<li>POST </li>
</ul>
<p><strong>参数:</strong> </p>
<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;">schoolId</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">long</td>
<td>学校id</td>
</tr>
<tr>
<td style="text-align: left;">photoDesc</td>
<td style="text-align: left;">否</td>
<td style="text-align: left;">string</td>
<td>照片描述</td>
</tr>
<tr>
<td style="text-align: left;">qiniuPhotoUrlJson</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">string</td>
<td>QiniuPhoto对象List 字符串</td>
</tr>
</tbody>
</table>
<p><strong>qiniuPhotoUrlJson示例</strong></p>
<pre><code>public class QiniuPhoto {
@Expose
public String photoUrl;
@Expose
public String photoName;
/**
* 图片本地地址
*/
public String photoShortPath;
public int width;
public int height;
}
qiniuPhotoUrlJson == List&lt;QiniuPhoto&gt; 转成String</code></pre>