.Net 앱에서 Pinterest 관리하기
모든 아이디어는 Pinterest 사용자가 검색하고 저장하는 이미지인 핀으로 표현됩니다. 핀은 또한 웹사이트로 다시 연결될 수 있으므로 Pinterest는 트래픽과 판매를 촉진하는 데 좋습니다.
그리고 비즈니스에서 가장 중요한 점은 핀을 통해 사람들이 구매하려는 제품에 대한 더 많은 정보를 찾을 수 있다는 것입니다.
코드 도우미.API.Pinterest
CodeHelper.API.Pinterest는 가볍고 사용하기 쉬운 .NET Pinterest 래퍼로 보드와 핀을 관리할 수 있습니다(생성, 업데이트 및 삭제 포함).
암호
앱 액세스 코드를 생성하려면 my online tool을 사용할 수 있습니다.
PinterstHelper _helper = new() {AccessToken = "{accesstoken}" };
보드 나열
var _boards = await _helper.BoardsGetList();
새 보드 만들기
var _newboard = await _helper.BoardCreate("Code Examples"
, "Discover the latest code examples by CodeHelper");
지정된 보드에 대한 핀 나열
var _pins = await _helper.BoardListPins("1038220589036341017");
핀 만들기
await _helper.CreatePin("https://webstories.today/watch/the-beginnings-of-sergey-brin/webplayer"
, "Sergey Brin's Beginnings In 1 Minute"
, "1038220589036341017" // Board ID
, "How did entrepreneur Sergey Brin, co-founder of Google started his success?"
, "images/jpeg"
, "https://webstories.today/images/s/the-beginnings-of-sergey-brin-cover.jpg");
핀 삭제
await _helper.PinDelete("123457"); //123457 = ID of the pin
Reference
이 문제에 관하여(.Net 앱에서 Pinterest 관리하기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/frederik_vl/managing-pinterest-from-your-net-app-5ff3텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)