Giter VIP home page Giter VIP logo

vk_comment_api's Introduction

VK_comment_API

Установка

  1. Склонируйте репозиторий на свой компьютер: git clone https://github.com/AngelinaDementeva/VK_comment_API.git.
  2. Создайте базу данных MySQL и импортируйте в неё файл db/setup.sql.
  3. Откройте файл config/db.php и измените параметры подключения к базе данных на свои.
  4. Установите зависимости, выполнив команду composer install.
  5. Запустите веб-сервер, например, командой php -S localhost:8000.
  6. Откройте в браузере страницу http://localhost:8000, чтобы убедиться, что проект установлен правильно.

API

Добавление комментария

POST /api/comment.php

Входные данные

{
    "text": "Текст комментария",
    "author": "Имя автора"
}

Выходные данные

{
    "id": 1,
    "text": "Текст комментария",
    "author": "Имя автора",
    "created_at": "2023-05-09 12:34:56",
    "updated_at": "2023-05-09 12:34:56"
}

Изменение комментария

PUT /api/comment.php

Входные данные

{
    "id": 1,
    "text": "Новый текст комментария"
}

Выходные данные

{
    "id": 1,
    "text": "Новый текст комментария",
    "author": "Имя автора",
    "created_at": "2023-05-09 12:34:56",
    "updated_at": "2023-05-09 12:45:12"
}

Получение комментария

GET /api/comment.php?id=1

Выходные данные

{
    "id": 1,
    "text": "Текст комментария",
    "author": "Имя автора",
    "created_at": "2023-05-09 12:34:56",
    "updated_at": "2023-05-09 12:34:56"
}

Удаление комментария

DELETE /api/comment.php

Входные данные

{
    "id": 1
}

Выходные данные

{
    "message": "Комментарий успешно удалён"
}

vk_comment_api's People

Contributors

angelinadementeva avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.