Docs

واجهة النشر الاجتماعي

مرجع API للنشر على وسائل التواصل الاجتماعي وادارة الحسابات

واجهة النشر الاجتماعي تتيح النشر المباشر على عدة منصات تواصل اجتماعي.

المنصات المدعومة

  • Instagram (Feed, Stories, Reels)
  • Facebook (Pages)
  • X (Twitter)
  • TikTok
  • Threads
  • YouTube (Shorts, Videos)

ربط حساب

POST /functions/v1/social-connect

يبدأ عملية OAuth لربط حساب تواصل اجتماعي.

الطلب

{
  "platform": "instagram",
  "store_id": "uuid",
  "redirect_url": "https://yourstore.mollkom.com/admin/social/callback"
}

الاستجابة

{
  "success": true,
  "auth_url": "https://api.instagram.com/oauth/authorize?...",
  "state": "random-state-token"
}

نشر محتوى

POST /functions/v1/social-publish

ينشر محتوى على منصة او اكثر.

الطلب

{
  "store_id": "uuid",
  "platforms": ["instagram", "x", "threads"],
  "content": {
    "text": "نص المنشور مع #هاشتاقات",
    "media": [
      {
        "type": "image",
        "url": "https://storage.mollkom.com/media/product.jpg"
      }
    ],
    "link": "https://yourstore.mollkom.com/product/123"
  },
  "schedule_at": null
}

الاستجابة

{
  "success": true,
  "results": [
    {
      "platform": "instagram",
      "status": "published",
      "post_id": "ig_12345",
      "url": "https://instagram.com/p/abc123"
    },
    {
      "platform": "x",
      "status": "published",
      "post_id": "tw_67890",
      "url": "https://x.com/store/status/67890"
    },
    {
      "platform": "threads",
      "status": "published",
      "post_id": "th_11111",
      "url": "https://threads.net/@store/post/11111"
    }
  ]
}

جدولة منشور

لجدولة المنشور، ارسل schedule_at بصيغة ISO 8601:

{
  "schedule_at": "2026-04-20T14:00:00Z"
}

الغاء جدولة

DELETE /functions/v1/social-publish/{post_id}

الاستجابة

{
  "success": true,
  "message": "Scheduled post cancelled"
}

توليد محتوى بالـ AI

POST /functions/v1/social-generate-content

الطلب

{
  "product_id": "uuid",
  "platform": "instagram",
  "tone": "casual",
  "language": "ar"
}

الاستجابة

{
  "success": true,
  "content": {
    "text": "نص المنشور المولّد...",
    "hashtags": ["#تسوق", "#موضة", "#ملابس"],
    "suggested_time": "2026-04-15T18:00:00Z"
  },
  "ai_credits_used": 1
}

On this page