| 139 | ==== get_feeds() ==== |
| 140 | Enumerates all the feeds for a given project as well as provides the properties for a given feed. |
| 141 | |
| 142 | Parameters: |
| 143 | || Parameter || Type || Meaning || |
| 144 | || project_url || string || Specify which project should the feed metadata be returned for. || |
| 145 | |
| 146 | '''Notes''': |
| 147 | * This RPC should not require authentication. |
| 148 | * If project_url is empty an error should be returned. |
| 149 | |
| 150 | ==== get_feed() ==== |
| 151 | Enumerates all the feed items for a given feed as well as provides the properties for a given feed item. |
| 152 | |
| 153 | Parameters: |
| 154 | || Parameter || Type || Meaning || |
| 155 | || project_url || string || Specify which project should the feed metadata be returned for. || |
| 156 | || feed_url || string || Specify which feed should the feed items be returned for. || |
| 157 | |
| 158 | '''Notes''': |
| 159 | * If both project_url and feed_url are empty, the BOINC client stream is returned. |
| 160 | * Requests for private feeds should return an error. |
| 161 | * This RPC should not require authentication. |
| 162 | |
| 163 | ==== get_private_feed() ==== |
| 164 | Enumerates all the feed items for a given feed as well as provides the properties for a given feed item. |
| 165 | |
| 166 | Parameters: |
| 167 | || Parameter || Type || Meaning || |
| 168 | || project_url || string || Specify which project should the feed metadata be returned for. || |
| 169 | || feed_url || string || Specify which feed should the feed items be returned for. || |
| 170 | |
| 171 | '''Notes''': |
| 172 | * If both project_url and feed_url are empty, the BOINC client stream is returned. |
| 173 | * This RPC requires authentication. |