Message to provide parameters when requesting data for a section page, currently only the path of the page.
Correct paths have a leading and a trailing slash, like /nachrichten/unterhaltung/
The homepage has the path /.
message GetSectionPageRequest {
// valid section_path, with leading and trailing slash
string section_path = 1;
// use to page through sections. If unspecified, it will default to `1`.
// Paging is 1-based (1 is the first page, there is no page `0`)
//
// Due to underlying mechanisms and seo requirements, page-size is fixed at 30
// The service may return fewer than this value.
int32 page = 2;
}
Scenarios about incomplete section data needs to be defined.
No section data results in an internal server error while incomplete section data might be returned.
[~]