Back to project page doubanbook4android.
The source code is released under:
Eclipse Public License - v 1.0 THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECI...
If you think the Android project doubanbook4android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.study.doubanbook_for_android.model; // ww w. ja v a 2 s . com public class URLMananeger { // root url public static final String ROOT_ULR = "https://api.douban.com"; // book writer search url public static final String BOOK_WRITER_SEARCHR_URL = "/v2/book/search"; // book note url public static final String BOOK_NOTE_LIST_URL = "/v2/book/:id/annotations"; //collect book url public static final String BOOK_COLLECT_URL = "/v2/book/:id/collection"; // get the user's collection url public static final String USER_COLLECTION_URL = "/v2/book/user/:name/collections"; //user search url public static final String USER_SEARCH_URL = "/v2/user"; }