TagLise - API
  • Başlangıç
  • Giriş
  • Sosyal Medya Girişi
  • Kayıt Ol
  • Şifre Sıfırlama
  • Zaman çizelgesi beslemesi
  • Profil verileri (2)
  • Profili rapor et
  • Kullanıcıyı engelle
  • Bildirim token
  • Şifre değiştir
  • Erişim tokeni yenile
  • Kullanıcı oturumunu kapat
  • Kullanıcıyı doğrula
  • Gönder ve Yanıtla (4)
  • Oy anketleri
  • Hızlı oluştur (7)
  • Konu verileri (2)
  • Beğen / Beğenme
  • Gönderiyi bildir
  • Gönderiyi yeniden gönder
  • Yer işaretleri (2)
  • Beğeni gönder
  • Gönderiyi sil
  • Hashtag ara
  • Kişi ara
  • Gönderi ara
  • Gönderiyi profile sabitle
  • Profil verilerini güncelle
  • Avatar ve Kapak (3)
  • Kullanıcı gizliliği (2)
  • Takip Et ve Takibi Bırak
  • Takip et
  • Takipçileri getir
  • İstekleri takip et (3)
  • Bildirim al
  • Bildirimleri sil
  • Mesajlaşma (6)
  • Hesabı sil
  • Dili değiştir
Upload avatar - 1 Upload cover - 2 Move cover - 3

Change user avatar

Please use this (https://taglise.com/mobile_api/avatar) API for accessing user avatar uploading endpoint


Post parameters

Field Value Remarks
session_id ​Access token ID E.g. de25cc16eb00960f076...
avatar Image format file (jpg,png,jpeg,gif) image.jpeg

Success response

{
        "code": 200,
        "message": "Avatar changed successfully",
        "data": {
            "avatar_url": "http://dev.colibri.loc/upload/avatars/2021/02/hVB4NV4....a967a7_thumbnail_512x512.jpg"
        }
    }
    

Error responses

{
        "code": 401,
        "data": [],
        "message": "Unauthorized Access"
    }

    {
        "code": 400,
        "data": [],
        "message": "Avatar image is missing or invalid"
    }
    

Change user profile cover

Please use this (https://taglise.com/mobile_api/cover) API for accessing user profile cover uploading endpoint


Post parameters

Field Value Remarks
session_id ​Access token ID E.g. de25cc16eb00960f076...
cover Image format file (jpg,png,jpeg,gif) image.jpeg

Success response

{
        "code": 200,
        "message": "Profile cover changed successfully",
        "data":{
            "cover_url": "http://dev.colibri.loc/upload/covers/2021/02/4wWZCl...fd23a4_image_cover_600x200.jpg"
        }
    }
    

Error responses

{
        "code": 401,
        "data": [],
        "message": "Unauthorized Access"
    }

    {
        "code": 400,
        "data": [],
        "message": "Cover image is missing or invalid"
    }
    

Change user profile cover position

Please use this (https://taglise.com/mobile_api/cover_reposition) API for accessing the endpoint of changing the position of the user's profile cover

This access point allows you to change the position of the profile cover up or down. The margins are combed from top to bottom in pixels, given the standard cover size of 600 by 200 pixels.


Post parameters

Field Value Remarks
session_id ​Access token ID E.g. de25cc16eb00960f076...
cover_position Integer top position offset number E.g. 10

Success response

{
        "code": 200,
        "message": "Your changes have been successfully saved",
        "data":{
            "cover_url": "http://dev.colibri.loc/upload/covers/2021/02/bp3lj5....ccd9c7_image_cover.jpg"
        }
    }
    

Error responses

{
        "code": 401,
        "data": [],
        "message": "Unauthorized Access"
    }

    {
        "code": 400,
        "data": [],
        "message": "Cover position offset number is missing or invalid"
    }