đ Pin Uploader. How can we write such software?
There are three approaches:
1. Using HTTP requests đ
1. We perform the necessary action in the browser. For example, we upload a Pin.
2. Intercept requests between the browser and the server using specialized tools.
3. Analyze the requests. Identify key requests. Collect data about the attributes, body parameters, and headers of these requests and the server's responses to these requests.
4. Form requests with the collected data and send them to the server using Python.
đ PROS:
âĸ Fast performance
âĸ Reliability
âĸ Imitation of a real browser
âĸ No need for applications and API keys to access endpoints
đ CONS:
âĸ Relative complexity of implementation and time spent on analyzing requests
đ WHAT IS REQUIRED:
1. Understanding of the HTTP protocol and request methods, such as GET and POST.
2. Ability to form and send HTTP requests using the Python requests library.
3. Ability to work with data in JSON format.
4. Understanding of session management and working with cookies.
5. Ability to analyze server responses, including reading HTTP status codes, response headers, and response bodies.
To be continued...
There are three approaches:
1. Using HTTP requests đ
1. We perform the necessary action in the browser. For example, we upload a Pin.
2. Intercept requests between the browser and the server using specialized tools.
3. Analyze the requests. Identify key requests. Collect data about the attributes, body parameters, and headers of these requests and the server's responses to these requests.
4. Form requests with the collected data and send them to the server using Python.
đ PROS:
âĸ Fast performance
âĸ Reliability
âĸ Imitation of a real browser
âĸ No need for applications and API keys to access endpoints
đ CONS:
âĸ Relative complexity of implementation and time spent on analyzing requests
đ WHAT IS REQUIRED:
1. Understanding of the HTTP protocol and request methods, such as GET and POST.
2. Ability to form and send HTTP requests using the Python requests library.
3. Ability to work with data in JSON format.
4. Understanding of session management and working with cookies.
5. Ability to analyze server responses, including reading HTTP status codes, response headers, and response bodies.
To be continued...
đ21đĨ10â¤3đĨ°2
...
2. Browser Emulation đ
We automate uploading using Selenium or its counterparts (Playwright, Puppeteer)
đ PROS:
âĸ Easy implementation
đ CONS:
âĸ Slow performance
âĸ Relatively low reliability
âĸ May be detected by anti-bot systems (tips below enhance reliability)
âš TIPS:
âī¸ Use stealth plugins
âī¸ Hide the navigator.webdriver property
âī¸ Change the default user-agent
âī¸ Pass the test at https://bot.sannysoft.com/
2. Browser Emulation đ
We automate uploading using Selenium or its counterparts (Playwright, Puppeteer)
đ PROS:
âĸ Easy implementation
đ CONS:
âĸ Slow performance
âĸ Relatively low reliability
âĸ May be detected by anti-bot systems (tips below enhance reliability)
âš TIPS:
âī¸ Use stealth plugins
âī¸ Hide the navigator.webdriver property
âī¸ Change the default user-agent
âī¸ Pass the test at https://bot.sannysoft.com/
đĨ10đ2â¤1
...
3. Official API đ
1. We register the application in the developers section. Obtain the application ID and secret key.
âšī¸ To get the application approved, it is necessary to provide a link to the website and a privacy policy.
2. Build an authentication flow based on OAuth 2.0. Obtain the access token.
3. Make requests to API endpoints including the obtained access token and parameters described in the documentation.
đ PROS:
âĸ Reliability
đ CONS:
âĸ Application moderation takes 1-2 days
3. Official API đ
1. We register the application in the developers section. Obtain the application ID and secret key.
âšī¸ To get the application approved, it is necessary to provide a link to the website and a privacy policy.
2. Build an authentication flow based on OAuth 2.0. Obtain the access token.
3. Make requests to API endpoints including the obtained access token and parameters described in the documentation.
đ PROS:
âĸ Reliability
đ CONS:
âĸ Application moderation takes 1-2 days
đĨ9â¤3đ2
This media is not supported in your browser
VIEW IN TELEGRAM
â What do you think, which of these types of pins will show better conversion rates?
Think about the reasons behind it.
Think about the reasons behind it.
đ¤2
âŦī¸ Which of these three types of Pins will show better conversion rates?
Anonymous Poll
17%
Pin 1
37%
Pin 2
46%
Pins 3
â¤16
This media is not supported in your browser
VIEW IN TELEGRAM
đĄ Answer to the question
â¤16đĨ4đ2đ¤1
Media is too big
VIEW IN TELEGRAM
đĩ Most of you are here to earn through sales and affiliate marketing.
So, the main goal of our pins is SALES.
We've found that for this purpose, pins of the third type are the most effective.
For the final, seventh part of the course, I've prepared a generator for such pins for you.
đ Pinterest Money 7. Soon...
So, the main goal of our pins is SALES.
We've found that for this purpose, pins of the third type are the most effective.
For the final, seventh part of the course, I've prepared a generator for such pins for you.
đ Pinterest Money 7. Soon...
đĨ37â¤8đ3đ¤2
Media is too big
VIEW IN TELEGRAM
Workflow for generating viral Shorts/Tiktoks.
1. Prompt builder. Google Sheets. Control Panel.
đĨ - I want to see the continuation and the result of the work
1. Prompt builder. Google Sheets. Control Panel.
đĨ - I want to see the continuation and the result of the work
đĨ78â¤9đ2đ¤1
Is it difficult to implement what I showed above?
I can teach you how to do the same in just a few posts here.
đĨ - I want this
I can teach you how to do the same in just a few posts here.
đĨ - I want this
đĨ115
Good. I see your interest. đ
Let's do this. 100 fires đĨ on this post, and I'll run a free mini-course right here on Telegram on how to write Shorts Monster
Let's do this. 100 fires đĨ on this post, and I'll run a free mini-course right here on Telegram on how to write Shorts Monster
đĨ138
Let's get started.
We can base our Shorts bot on the Shorts creation technology described by 10x income in this video.
Where should we start when implementing such a task? With decomposing the task into smaller steps.
In our case, the initial decomposition might look like this:
1. Writing the script
2. Dividing the script into scenes
3. Writing prompts to generate images for each scene
4. Generating AI images
5. Downloading video footage from stock
6. Generating voiceovers
7. Generating the video
In the future, these steps could become separate modes of the bot. In the end, we will also create a unified mode that will combine the entire pipeline.
Next, we need to determine what classes will be present in our bot.
We can base our Shorts bot on the Shorts creation technology described by 10x income in this video.
Where should we start when implementing such a task? With decomposing the task into smaller steps.
In our case, the initial decomposition might look like this:
1. Writing the script
2. Dividing the script into scenes
3. Writing prompts to generate images for each scene
4. Generating AI images
5. Downloading video footage from stock
6. Generating voiceovers
7. Generating the video
In the future, these steps could become separate modes of the bot. In the end, we will also create a unified mode that will combine the entire pipeline.
Next, we need to determine what classes will be present in our bot.
đĨ51đ3