Delete Friendship Link Interface

Delete the specified friendship link record from the system, identifying the friendship link to be deleted through the link address.

Points to note

  • This interface uses the POST method to submit data in form-data format
  • An effective background import interface Token is required for authentication
  • You must provide the address of the友情链接 to be deleted
  • The delete operation is irreversible, please operate with caution
  • A successful deletion will return a success message

Request address

{域名地址}/api/friendlink/delete?token={token}

Description:{域名地址}Replace with your domain address,{token}Replace with the Token in the background content import interface function, such ashttps://en.anqicms.com/api/friendlink/delete?token=xxx

Request Syntax

POST {域名地址}/api/friendlink/delete?token={token}
Content-Type: multipart/form-data

Request parameters

GET parameters

Field name Type Required Description
token string Is Token in the background content import interface function

POST parameters

Field name Type Required Description
link string Is Opponent link

Return parameters

Field name Type Description
code int Error code
msg string Error description

Usage Example

Request example

POST /api/friendlink/delete?token=4712a54b4c456bb29b7816d241db69a7 HTTP/1.1
Host: www.anqicms.com
Content-Type: multipart/form-data; boundary=----WebKitFormBoundary7MA4YWxkTrZu0gW

------WebKitFormBoundary7MA4YWxkTrZu0gW
Content-Disposition: form-data; name="link"

https://en.anqicms.com/
------WebKitFormBoundary7MA4YWxkTrZu0gW--

Or use the curl command:

curl -X POST \
  'https://en.anqicms.com/api/friendlink/delete?token=4712a54b4c456bb29b7816d241db69a7' \
  -H 'Content-Type: multipart/form-data' \
  -F 'link=https://en.anqicms.com/'

Response Example

{
  "code": 0,
  "msg": "链接已删除"
}

Example of error response

{
  "code": -1,
  "msg": "找不到对应的友情链接"
}

error code

Error code Description
0 OK
-1 Error, the reason is indicated in msg
1001 Not logged in
1002 Not authorized
200 API request OK