All Projects → EliF-Lee → shareKakao

EliF-Lee / shareKakao

Licence: MIT License
카카오톡 공유하기 모듈 - shareKakao

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to shareKakao

Cookbook
android-ui-testing.github.io/Cookbook/home/
Stars: ✭ 273 (+992%)
Mutual labels:  kakao
mango
Core utility library & data connectors designed for simpler usage in Scala
Stars: ✭ 41 (+64%)
Mutual labels:  kakao
OAuthLogin.AspNetCore
第三方平台联合登陆(facebook、微信、微博、QQ、Kakao)
Stars: ✭ 43 (+72%)
Mutual labels:  kakao
efw3.X
Ajax Framework By Server Side JavaScript for Java Web-App.
Stars: ✭ 16 (-36%)
Mutual labels:  rhino
dendro
volumetric modeling for grasshopper built on top of openvdb
Stars: ✭ 47 (+88%)
Mutual labels:  rhino
react-native-kakao-login
React Native module for kakao login sdk: rn-kakao-login
Stars: ✭ 76 (+204%)
Mutual labels:  kakao
gh-web-ui
Package for building web-based User Interfaces (UI) in Rhino Grasshopper.
Stars: ✭ 69 (+176%)
Mutual labels:  rhino
Reader
一个自用的小说阅读器 kotlin 协程、rhino、Javascript
Stars: ✭ 20 (-20%)
Mutual labels:  rhino
clipper
Implementation for the clipper library in rhino and grasshopper.
Stars: ✭ 55 (+120%)
Mutual labels:  rhino
OAuthLogin
第三方平台联合登陆(facebook、微信、微博、QQ、Kakao)
Stars: ✭ 57 (+128%)
Mutual labels:  kakao
rhino-secrets
A short overview on the secrets of Rhino 3D & Grasshopper.
Stars: ✭ 28 (+12%)
Mutual labels:  rhino
RobotComponents
A Grasshopper plugin for intuitive robot programming
Stars: ✭ 30 (+20%)
Mutual labels:  rhino
corona-kakao-bot
🤖 카카오톡 코로나 알리미
Stars: ✭ 17 (-32%)
Mutual labels:  kakao
speckle-sharp
.NET SDK, Schema and Connectors: Revit, Rhino, Grasshopper, Dynamo, ETABS, AutoCAD, Civil3D & more.
Stars: ✭ 214 (+756%)
Mutual labels:  rhino
spring-boot-oauth2-login
No description or website provided.
Stars: ✭ 24 (-4%)
Mutual labels:  kakao
LoboEvolution
Lobo Evolution Java Web Browser. Forks welcome!
Stars: ✭ 53 (+112%)
Mutual labels:  rhino
MovieDb
No description or website provided.
Stars: ✭ 34 (+36%)
Mutual labels:  kakao
RhinoLink
Wolfram Language interface to Rhino3D
Stars: ✭ 23 (-8%)
Mutual labels:  rhino
kakao-ad-android
No description or website provided.
Stars: ✭ 18 (-28%)
Mutual labels:  kakao
Korea-Covid-19-Vaccine-Reservation
💉 코로나 잔여백신 예약 매크로 커스텀 빌드 (속도 향상 버전)
Stars: ✭ 22 (-12%)
Mutual labels:  kakao

shareKakao

  • [Ko] 카카오톡 공유하기 모듈 (for Rhino)
  • [En] Share Kakao Module (for Rhino)

JavaScript License

2021/09/12 정상 작동
카카오톡 버전 9.4.5 기준

Warning

해당 모듈을 사용하여 얻는 모든 불이익에 대해 아무런 책임을 지지 않습니다.

오픈소스 라이선스

KakaoAuthCracker
Github
Copyright 2020 supersunkist
MIT License

Example - Kakao.share()

Alt text Alt text

  • Share Simple Text - [Type: 1]
const shareKakao = require("share.js");
const Kakao = new shareKakao();
Kakao.setPackage("com.kakao.talk", "KakaoTalkVersion");

Kakao.share("chat_id", {
    type: 1,
    message: "example",
    attachment: {}
});
  • Share Shout Text - [Type: 1]
const shareKakao = require("share.js");
const Kakao = new shareKakao();
Kakao.setPackage("com.kakao.talk", "KakaoTalkVersion");

Kakao.share("chat_id", {
    type: 1,
    message: "Example",
    attachment: {
        shout: true
    }
});
  • Share Mention Text - [Type: 1]
const shareKakao = require("share.js");
const Kakao = new shareKakao();
Kakao.setPackage("com.kakao.talk", "KakaoTalkVersion");

Kakao.share("chat_id", {
    type: 1,
    message: "@Example",
    attachment: {
        mentions: [{
            at: [1],
            len: 7,
            user_id: user_id // string 형식으로 넣으면 작동하지 않습니다.. (21년 11월 08일 수정)
        }]
    }
});

/* (2021년 10월 달 이후 작동하지 않음)
Kakao.share("chat_id", { 
    type: 1,
    message: "@", // 1. 닉네임 없이 @.
    attachment: {
        mentions: [{
            at: [1],
            len: 0, // 2. 닉네임 길이를 0.
            user_id: "user_id" // 1, 2번처럼 해두고 user_id만 넣으면 멘션 가능합니다.
        }]
    }
});
*/
  • Share Long Text - [Type: 1]
const shareKakao = require("share.js");
const Kakao = new shareKakao();
Kakao.setPackage("com.kakao.talk", "KakaoTalkVersion");

Kakao.share("chat_id", {
    type: 1,
    message: "Example", // 미리보기 텍스트.
    attachment: {
        type: "text/plain",
        mt: "text/txt",
        path: "path" /* talkm/bla/bla.txt */
    }
});
  • Share Simple Image - [Type: 2]
const shareKakao = require("share.js");
const Kakao = new shareKakao();
Kakao.setPackage("com.kakao.talk", "KakaoTalkVersion");

Kakao.share("chat_id", {
    type: 2,
    message: "사진",
    attachment: {
        type: "image/jpeg",
        w: 210,
        h: 210,
        path: "path" /* talkm/bla/bla.jpeg */
    }
});
  • Share Simple File - [Type: 18]
const shareKakao = require("share.js");
const Kakao = new shareKakao();
Kakao.setPackage("com.kakao.talk", "KakaoTalkVersion");

Kakao.share("chat_id", {
    type: 18,
    message: "Example",
    attachment: {
        name: "bla.zip", // 확장자 입력 필수.
        size: 1572864, // 바이트 기준, 1572864 입력시 출력 -> 1.5 MB
        path: "path" /* talkf/bla/bla.zip */
    }
});

Available Types - Kakao.share()

{
    "text": 1,
    "image": 2,
    "video": 3,
    "audio": 5,
    "map": 16,
    "file": 18
}

Example - Kakao.shareSharp()

Alt text Alt text

  • Share Sharp Search - [Type: list]
const shareKakao = require("share.js");
const Kakao = new shareKakao();
Kakao.setPackage("com.kakao.talk", "KakaoTalkVersion");
Kakao.setUserId("myUserId");

Kakao.shareSharp("chat_id", {
    type: "list",
    query: "Example",
    web_url: "",
    object: {
        content: [
            {
                title: "ㅇㅅㅇ",
                description: "...",
                web_url: ""
            }
        ],
        button: [
            {
                title: "ABC",
                web_url: ""
            },
            {
                title: "DEF",
                web_url: ""
            }
        ]
    }
});
  • Share Sharp Search - [Type: image]
const shareKakao = require("share.js");
const Kakao = new shareKakao();
Kakao.setPackage("com.kakao.talk", "KakaoTalkVersion");
Kakao.setUserId("myUserId");

Kakao.shareSharp("chat_id", {
    type: "image",
    query: "Example",
    web_url: "",
    object: {
        content: [
            {
                image_url: "http://blabla.com/abc.jpg",
                width: "500",
                height: "400",
                web_url: ""
            }
        ],
        button: []
    }
});

Available Types - Kakao.shareSharp()

[
    "feed",
    "list",
    "image",
    "media"
]
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].