nodejs: 네이버지식인 포스팅 예제
노드를 이용하여 네이버 지식인 자동 포스팅을 해보는 예제이다. selenium-webdriver 모듈이 필요하니 사전에 설치되어 있어야 한다. naverkin.js const { Builder, By, until, Key } = require('selenium-webdriver'); //Information ''내에 정보 입력 const Information = { nid : '네이버아이디', npw : '네이버패스워드', keyword : '키워드', comment : '댓글 내용', count : 30 }; let commentCount = Information.count; //지식인 자동 댓글 const KinAutoComment = async (nid,npw,keyword,comment) => {..
Shorten URL Key 만들기
단축 URL 서비스를 제공하는 사이트들이 있다. 대표적으로 bit.ly, tinyurl.com, url.kr 등의 사이트들이다. 그렇다면 단축 URL 키 값은 어떻게 생성하는 것일까? 오늘은 단축 URL 일명 Shorten URL 키 값을 만드는 방법을 간단히 살펴보자. // Shorten URL 키값 만드는 함수 function generate_keycode() { $keycode = ''; // 초기화 $charIndex = array("1","2","3","4","5","6","7","8","9","a","b","c","d","f","g","h","k","l","m","n","p","q","r","t","x","y"); $is_exists = true; global $pdo; while($is_ex..