Saving Sites

Text save

Wiki for site text.mkedziora.pl

To upload new text with random name:

curl -X POST -F 'text=(put text here)' https://text.mkedziora.pl/upload

Available parameters given in -F ''

  • Text to send, required.
    -F 'text='
  • Limit access to text to only your IP address - 1, default 0.
    -F 'priv='
  • Name for link to text, default random.
    -F 'name='
  • Time to delete text, default - forever.
    -F 'exp='
  • Password to access text, default blank.
    -F 'pass='

Downloading content:

In the case of an unsecured resource:

curl https://text.mkedziora.pl/(name)

If the resource is password-protected, it must be accessed in the as follows:

curl -u :(password) https://text.mkedziora.pl/(name)

Delete content:

In the case of an unsecured resource:

curl https://text.mkedziora.pl/delete/(name)

If the resource is password-protected:

curl -u :(password) https://text.mkedziora.pl/delete/(name)