Mastodon の API を叩くには以下の手順を踏む必要がある:
- OAuth2 クライアントを登録する
- アクセストークンを取得する
- アクセストークンを
Authorization
ヘッダに指定して API にアクセスする
Mastodon の Apps API に登録情報を送ってクライアントを払い出してもらう(一度だけやれば OK).
tell application "Mail" | |
set theFrom to "" | |
set theTos to {} | |
set theCcs to {} | |
set theBccs to {} | |
set theSubject to "" | |
set theContent to "" | |
set theSignature to "" |
#target "Illustrator" | |
function mergedBounds(bns,nowBns){ | |
if(!bns){ | |
bns=nowBns; | |
}else{ | |
if(nowBns){ | |
if(bns[0]>nowBns[0])bns[0]=nowBns[0]; | |
if(bns[1]<nowBns[1])bns[1]=nowBns[1]; | |
if(bns[2]<nowBns[2])bns[2]=nowBns[2]; |