POST api/blogger/logon/activate?un={un}&a={a}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| un | string |
Required |
|
| a | string |
Required |
Body Parameters
None.
Response Information
Resource Description
ResponseResultOfString| Name | Description | Type | Additional information |
|---|---|---|---|
| Data | string |
None. |
|
| Message | string |
None. |
|
| Status | integer |
None. |
|
| Page | PageInfo |
None. |
Response Formats
application/json, text/json
Sample:
{
"Data": "sample string 1",
"Message": "sample string 2",
"Status": 3,
"Page": {
"PageIndex": 1,
"PageTotal": 2,
"DataTotal": 3,
"PostSize": 4,
"TagSize": 5,
"ThemeSize": 6
}
}
application/xml, text/xml
Sample:
<ResponseResultOfstring xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BlogAdmin.Models">
<Data>sample string 1</Data>
<Message>sample string 2</Message>
<Page>
<DataTotal>3</DataTotal>
<PageIndex>1</PageIndex>
<PageTotal>2</PageTotal>
<PostSize>4</PostSize>
<TagSize>5</TagSize>
<ThemeSize>6</ThemeSize>
</Page>
<Status>3</Status>
</ResponseResultOfstring>