{FACEBOOK} --> How To Trace Your Facebook Profile Visitors <<SEE HERE>>
First of all, I want to say HELLO to all of you
Today, I'm going to tell you :
How To Trace Your Facebook Profile Visitors
To Found who Recently Visited your Profile,
Follow below steps to know your FACEBOOK RECENT VISITORS :.
Step 1) Go to your Facebook Profile Page.
Step 2) Now Press Ctrl + U from your keyboard for see Source Code of your profile page.
Step 3) Now press Ctrl + F from your keyboard to open Search Box.
Step 4) Now search this code {"list":
Step 5) You Find some Facebook Profile Ids(See Attachment).
Step 6) There are some Facebook Profile Ids of your friends who visited recently.
Step 7) The first one ID's are showing visits the most number of time.
Step 8) Now if your want to See that who visited your Profile Recently, Open a new tab and Enter below link :
www.facebook.com/Facebook Profile Id
For Example :
www.facebook.com/100001259925690
Enjoy The Trick..
HIT THANKS :good: IF I HELPED
FB - www.facebook.com/IsHaQzAaDa.Rishabh
Thanks, it seems to work
Trying now
Sent from my C2104 using XDA Free mobile app
IMO think that's showing u the last people u interact with or also if u visited other's profile. but its a good trick to know hahaha thx!
This isn't visitors to your page, it is in fact for the chatbox, if you look at the code immediately preceding list it shows this:
Code:
["InitialChatFriendsList",[],{"list":
I'm closing this thread as it is plain that it is not what the op user thinks it is.
Related
Here's a quick way to keep up to date on new posts to the forums without opening your browser. I like it just to scan the topics quickly when I'm short on time. This will capture new posts and NOT the replies.
Download and unzip the attached file and save on card in a high level directory (don't go more than 1 deep)
Open RSS Hub
Menu > Channel > New
Select "Import from a file or URL (OPML)" radio button then Next
Select "Import from a file on Pocket PC" radio button then Next
tap on Kaiser_RSSfeeds.opml file
Select by check box the Forums you want to import (I chose the ones I frequent)
You can later rename the Channel to make it more distinquishable on the Channels list... I just changed xda-development to xda-dev.
Enjoy.
===========
UPDATE
This contains only feeds for Kaiser specific forums... it was moved here by a moderator and was originally in the Kaiser forums. I will update this to the other forums if there is any interest.
Nice...testing it out right now...Will report back how it goes.
smuook,
Care to share how you've done this as the kaiser subforums have changed since you last posted this. Also, I would mind the xda general ones. TIA
I am creating this thread to start an area for Backitude server side developers and for casual users looking to implement their own flavor of location history or Google Latitude, to come and chat, ask questions, and get information.
Backitude is an android application that allows users to track their device locations in a highly configurable and continuous manner. Location data can be stored locally as (KML, CSV) or posted to a custom server. Anyone can create their own server implementation for storing or sharing location data.
Currently, three users are sharing their implementations:
http://backitude.ascanwex.de/ ([email protected])
-and-
https://bitbucket.org/nparley/mylatitude/wiki/Home ([email protected])
-and-
http://www.backituders.com ([email protected])
Let me know if more exist you would like me to add to the list!
Quick hack for using Traccar as backend
Hi,
If you want to use Traccar as the backend, then you can quickly implement a server side fix in PHP that converts the HTTP POST from Backitude to the required HTTP GET request OsmAnd style that Traccar expects.
Requirements:
- HTTP server with PHP
Place a backitude.php file with this content on your Traccar server:
PHP:
<?
$data=$_POST;
array_walk($data , create_function('&$v,$k', '$v = $k."=".$v ;'));
$url='http://127.0.0.1:5055?'.implode("&",$data);
$response = file_get_contents($url);.
echo "200 OK\n";
?>
Replace 127.0.0.1 with your Traccar server, if it's located on another host than the one you put the PHP code in.
Configure Backitude like this:
Server URL: http://<yourserveraddress>/backitude.php
Successfull response code: 200
Authentication: none
Custom field1: <enter your imei or the ID youre using in Traccar>
Latitude: lat
Longitude: lon
Accuracy: hdop
Speed: speed
Altitude: altitude
Direction Bearing: bearing
Location Timestamp (UTC): timestamp
TimeZone Offset: do not post/empty
Custom Field 1: id
Works for me! Thanks a lot for Backitude - the Traccar client is not nearly as reliable or battery friendly as Backitude.
wire103 said:
Hi,
If you want to use Traccar as the backend, then you can quickly implement a server side fix in PHP that converts the HTTP POST from Backitude to the required HTTP GET request OsmAnd style that Traccar expects.
Requirements:
- HTTP server with PHP
Place a backitude.php file with this content on your Traccar server:
PHP:
<?
$data=$_POST;
array_walk($data , create_function('&$v,$k', '$v = $k."=".$v ;'));
$url='http://127.0.0.1:5055?'.implode("&",$data);
$response = file_get_contents($url);.
echo "200 OK\n";
?>
Replace 127.0.0.1 with your Traccar server, if it's located on another host than the one you put the PHP code in.
Click to expand...
Click to collapse
Would this whole implementation be a lot simpler, if Backitude sent over a GET instead of a POST ?
Yes, a toggle switch between GET and POST would make your program directly compatible, if the user can set port number on the URL as well.
Sendt fra min GT-I9505 med Tapatalk
To repost from the other thread:
I have finally got around to opening up my Google App Engine app code. It runs on the free quota on Google App Engine and so it does not require you to pay for a server. Also as it's your app you have control of your location data, and can delete it at any time by going into the Google App Engine settings for your app. You send your location to your app and it is recorded in a database. The app allows you to share your location with other people by creating a white list of allowed Google accounts. I have also made a history page which you can use to see your updates from each day. I can't add links but you should be able to find the code at bitbucket.org / nparley
No doubt there will be bugs which I have not found. If you find one please add an issue to on the bitbucket page. I will continue to add new features as I can but am open to requests, just add a feature requestion issue on bitbucket.
Cheers,
Neil
[B[/B][/B]
nparley said:
To repost from the other thread:
I have finally got around to opening up my Google App Engine app code. It runs on the free quota on Google App Engine and so it does not require you to pay for a server. Also as it's your app you have control of your location data, and can delete it at any time by going into the Google App Engine settings for your app. You send your location to your app and it is recorded in a database. The app allows you to share your location with other people by creating a white list of allowed Google accounts. I have also made a history page which you can use to see your updates from each day. I can't add links but you should be able to find the code at bitbucket.org / nparley
No doubt there will be bugs which I have not found. If you find one please add an issue to on the bitbucket page. I will continue to add new features as I can but am open to requests, just add a feature requestion issue on bitbucket.
Cheers,
Neil
Click to expand...
Click to collapse
ON WEB PAGE IT SHOWS ONLY "Hello world!"
holysmoke001 said:
[B[/B][/B]
ON WEB PAGE IT SHOWS ONLY "Hello world!"
Click to expand...
Click to collapse
Hi holysmoke001,
I am not quite sure what you are referring to,
Neil
nparley said:
Hi holysmoke001,
I am not quite sure what you are referring to,
Neil
Click to expand...
Click to collapse
Hi Neil
I follow all your instructions for Setting up the app but when i go to yourapp(my app).appspot.com/
IT SHOWS ONLY "Hello world!" written on corner of the web page.
can you please upload detailed instructions step by step how to set up the app
holysmoke001 said:
Hi Neil
I follow all your instructions for Setting up the app but when i go to yourapp(my app).appspot.com/
IT SHOWS ONLY "Hello world!" written on corner of the web page.
can you please upload detailed instructions step by step how to set up the app
Click to expand...
Click to collapse
I assume you have done all the steps here? https://bitbucket.org/nparley/mylatitude/wiki/Setup App Does your site say running if you go to here https://appengine.google.com/
---------- Post added at 09:34 PM ---------- Previous post was at 09:26 PM ----------
holysmoke001 said:
Hi Neil
I follow all your instructions for Setting up the app but when i go to yourapp(my app).appspot.com/
IT SHOWS ONLY "Hello world!" written on corner of the web page.
can you please upload detailed instructions step by step how to set up the app
Click to expand...
Click to collapse
OK the problem could be this https://code.google.com/p/google-app-engine-samples/issues/detail?id=40 i.e. the path is wrong and the app engine application launcher has created another default app.yaml and app.py file.
nparley said:
I assume you have done all the steps here? //bitbucket.org/nparley/mylatitude/wiki/Setup%20App Does your site say running if you go to here://appengine.google.com
---------- Post added at 09:34 PM ---------- Previous post was at 09:26 PM ----------
OK the problem could be this //code.google.com/p/google-app-engine-samples/issues/detail?id=40 i.e. the path is wrong and the app engine application launcher has created another default app.yaml and app.py file.
Click to expand...
Click to collapse
yes problem is same.Launcher is creating a new folder inside my project folder with a default main.py and app.yaml file.
my project folder is JMlatitude and i copied my client secret file in JMlatitude folder and edited the app.yaml file as JMlatitude.yaml but launcher is creating new folder (JMlatitude) inside project folder.pls help what to do
Thanks Brian for the dedicated post.
This is how to get started with my service (www.backituders.com).
0) The service is free
1) Drop me an email to [email protected] backituders <Dot> com. You'll get a username pwd password back.
2) Start using backituders!
You can find more infos, expandoing docs and guides at www.backituders.com.
Backituders is meant as an API you can use to implement your own applications on. I provide the server and APIs to set and get positions, set alamers and alerts and so on. There is also a ready-to-use "draw my map" and "follow my device live" feature.
Will use this post as updates to the service are done.
- 20131031: display timestamps in RFC format, display speed
- 20131104: changed the icons on the map to reflect direction (8 main dir) when available.
- 20131104: sono disponibili istruzioni base in italiano.
Thanks any for testing.
holysmoke001 said:
yes problem is same.Launcher is creating a new folder inside my project folder with a default main.py and app.yaml file.
my project folder is JMlatitude and i copied my client secret file in JMlatitude folder and edited the app.yaml file as JMlatitude.yaml but launcher is creating new folder (JMlatitude) inside project folder.pls help what to do
Click to expand...
Click to collapse
Hi,
Sorry I might not have been clear in my instructions. You have to keep the file named app.yaml as this is the file Google App Engine looks for and will create a new one if not found. It is inside this file where you have to make the edit, the top line contains `application: YOURAPPNAME` here you have to change YOURAPPNAME to JMlatitude.
Neil
nparley said:
Hi,
Sorry I might not have been clear in my instructions. You have to keep the file named app.yaml as this is the file Google App Engine looks for and will create a new one if not found. It is inside this file where you have to make the edit, the top line contains `application: YOURAPPNAME` here you have to change YOURAPPNAME to JMlatitude.
Neil
Click to expand...
Click to collapse
Thanks Neil its working now
Hi Neil pls help me in setting up backitude custom server settings
1.there are two custom field 1 one in request parameter values and another is in request parameter keys .which key i have to fill in both custom fields
API key or application key setup at yourapp.appspot.com. when i fill custom field 1 in request parameter values it shows no custom field parameter key configured, value will not post (configure below) when i run test it shows error gaugler.backitude.service.backitudeException:Custom Server POST failure: HTTP/1.1400 Bad Request
2. what to fill in Device ID
holysmoke001 said:
Hi Neil pls help me in setting up backitude custom server settings
1.there are two custom field 1 one in request parameter values and another is in request parameter keys .which key i have to fill in both custom fields
API key or application key setup at yourapp.appspot.com. when i fill custom field 1 in request parameter values it shows no custom field parameter key configured, value will not post (configure below) when i run test it shows error gaugler.backitude.service.backitudeException:Custom Server POST failure: HTTP/1.1400 Bad Request
2. what to fill in Device ID
Click to expand...
Click to collapse
Get the key from going here: yourapp.appspot.com/viewkey. You want to end up with something like this:
https://bytebucket.org/nparley/mylatitude/wiki/settings.png I.e. at the top in the custom field type your long key. Under requestion parameter keys change custom field 1 (it'll have no value to start with) to the word "key". I don't seem to have a device ID on my backitude version are you sure you have the latest version from the play store? (or try leaving it bank) Also make sure you change the response codes to 200,202
Neil
Trying to set up the app in google apps
nparley said:
To repost from the other thread:
I have finally got around to opening up my Google App Engine app code. It runs on the free quota on Google App Engine and so it does not require you to pay for a server. Also as it's your app you have control of your location data, and can delete it at any time by going into the Google App Engine settings for your app. You send your location to your app and it is recorded in a database. The app allows you to share your location with other people by creating a white list of allowed Google accounts. I have also made a history page which you can use to see your updates from each day. I can't add links but you should be able to find the code at bitbucket.org / nparley
No doubt there will be bugs which I have not found. If you find one please add an issue to on the bitbucket page. I will continue to add new features as I can but am open to requests, just add a feature requestion issue on bitbucket.
Cheers,
Neil
Click to expand...
Click to collapse
I have also tried to set up the app with google engine. I got stuck where I need to download a copy of my app code. I have no idea how to do this. In the description you wrote to download the latest .zip or clone the git repo into a directory. How will I be able to do that?
Thanks for helping me.
regards
Manfred
nparley said:
Get the key from going here: yourapp.appspot.com/viewkey. You want to end up with something like this:
https://bytebucket.org/nparley/mylatitude/wiki/settings.png I.e. at the top in the custom field type your long key. Under requestion parameter keys change custom field 1 (it'll have no value to start with) to the word "key". I don't seem to have a device ID on my backitude version are you sure you have the latest version from the play store? (or try leaving it bank) Also make sure you change the response codes to 200,202
Neil
Click to expand...
Click to collapse
Hi Neil!
Great app, finally got it to work. Will report more feedback later!
Good work!!
Error message with key
nparley said:
Get the key from going here: yourapp.appspot.com/viewkey. You want to end up with something like this:
https://bytebucket.org/nparley/mylatitude/wiki/settings.png I.e. at the top in the custom field type your long key. Under requestion parameter keys change custom field 1 (it'll have no value to start with) to the word "key". I don't seem to have a device ID on my backitude version are you sure you have the latest version from the play store? (or try leaving it bank) Also make sure you change the response codes to 200,202
Neil
Click to expand...
Click to collapse
Hi Neil!
Now the app worked for a couple of hours and now I get this message:
Google has disabled use of the Maps API for this application. The provided key is not a valid Google API Key, or it is not authorized for the Google Maps Javascript API v3 on this site. If you are the owner of this application, you can learn about obtaining a valid key here: https://developers.google.com/maps/documentation/javascript/tutorial#api_key
Do you have any idea what I could do?
Thanks!
dukerider33 said:
Hi Neil!
Now the app worked for a couple of hours and now I get this message:
Google has disabled use of the Maps API for this application. The provided key is not a valid Google API Key, or it is not authorized for the Google Maps Javascript API v3 on this site. If you are the owner of this application, you can learn about obtaining a valid key here: https://developers.google.com/maps/documentation/javascript/tutorial#api_key
Do you have any idea what I could do?
Thanks!
Click to expand...
Click to collapse
This probably means you have your Google maps api key wrong or you did not fill in your Google maps api in when you setup the app. The instructions show you where to get the browser api key from, it's this page https://code.google.com/apis to get your Google maps browser api key. You can go here https://appengine.google.com log in to your app, click on data store viewer, in the by kind drop down pick maps the keyid should equal the key you get from the Google api console. You can edit it if it's not correct. If you have no maps kind in the data store you need to delete all the users and run the setup again.
Hopes this gives you some help trubble shooting,
Neil
nparley said:
This probably means you have your Google maps api key wrong or you did not fill in your Google maps api in when you setup the app. The instructions show you where to get the browser api key from, it's this page https://code.google.com/apis to get your Google maps browser api key. You can go here https://appengine.google.com log in to your app, click on data store viewer, in the by kind drop down pick maps the keyid should equal the key you get from the Google api console. You can edit it if it's not correct. If you have no maps kind in the data store you need to delete all the users and run the setup again.
Hopes this gives you some help trubble shooting,
Neil
Click to expand...
Click to collapse
Hi Neil,
had to setup the site completely new from the scratch. Now it works nicely.
Thank you!
Just a simple instructions to specifically change whatsapp group admin.
Method 1:
This will change every group, account info and settings. Your old number will no longer become admin.
1. open whatsapp
2. go to settings (whatsapp setting)
3. go to account
4. go to change number (if you did not see this, you are using the old whatsapp. please update your whatsapp first)
5. follow the instruction given
6. voila. the new numbers will become just like yours.
Method 2:
This method will be a little bit difficult but you can choose to change only one group or 2, 3 and so forth.
1. backup whatsapp message using Titanium Backup (do this if you want to save the group message)
2. open whatsapp
3. open the group you want to change
4. tap the group name (in order to add the new number)
5. on the right side, tab the icon to add new contact in the group
6. add the number you wish to make admin
*do step 4 to 6 if you have not add the number you want to make admin
7. remember who is in the group or take screenshot (this will be useful later)
8. remove all other members until two members left (you and the new number)
9. tap delete and exit group (at this point the new number will become the admin)
10. using the new number, add all the members of the group as before (you can refer to the screenshot you take in step 7)
Method 3
This method was introduce in whatsapp application in November 2014. It enables the admin to add another user as an admin.
1. open whatsapp.
2. go to group info
3. long press the user that you want o add as admin
4. done
if you dont want to be an admin at all follow below after you have follow the above instruction.
5. leave group
6. ask the person who you have assign as an admin to add you back in the group.
Thats all. Thank you.
Thanks bro.
For the 1st method.
Hit Thanks
----------Signature---------
Need Some Cool Guides Visit Hmpshah Guides
happy to help.
Deer androidman ...... I was join a whatsapp group certainly....... Group admin was another guy and he was very hopless... So my wish I am the group admin of the group.......
This can be possible ???
I don't even understand the 1st method...
nitindesai370 said:
Deer androidman ...... I was join a whatsapp group certainly....... Group admin was another guy and he was very hopless... So my wish I am the group admin of the group.......
This can be possible ???
Click to expand...
Click to collapse
it is possible now but only the admin can make you an admin.
Pawer8 said:
I don't even understand the 1st method...
Click to expand...
Click to collapse
the 1st method is in the whatsapp apps itself.
I want to be an admin in a group that i am a member in it but the admin of the group doesn't want me to be
Sent from my SM-G7102 using XDA Free mobile app
cooool nice one
Currently i am not an admin or a member of the group. But I want to become admin of that group? please (want to hack)
Currently i am not an admin or a member of the group. But I want to become admin of that group? please (want to hack)
Hello, Sir I want to become admin of my friend whatsapp group plz help me
Follow below given steps to change WhatsApp group admin on your android device
Step 1: Open “WhatsApp”
Step 2: Go to the “chats” screen in WhatsApp
Step 3: Tap on any WhatsApp group want to make new group admin
Step 4: Tap on “Group info” or “Group subject name “
Step 5: Tap on the any user to make new group admin in WhatsApp existing group
Step 6: Tap on “Make group admin” to add new admin on WhatsApp group
New group admin can easily remove the other WhatsApp group admin from group participants.
I hope this article will help you.
help me thank hackintechnology after being scammed of $1500 he helped me find my cheating wife he helped hack her whatsapp gmail and kik and i got to know that she was cheating on me , in less than 24 hours he helped me out with everything HACKINTECHNOLOGY is trust worthy and affordable contact [email protected] +16692005256IF U Need Any Help ?
*University grades changing
*Bank accounts hack
*Twitters hack
*email accounts hack
*Grade Changes hack
* load bank account any amounts
*Website crashed hack
*server crashed hack
*Retrieval of lost file/documents
*Erase criminal records hack
*Databases hack
*Sales of Dumps cards of all kinds
*Untraceable Ip
*Individual computers hack
*Websites hack
*Facebook hack
*Control devices remotely hack
*Burner Numbers hack
*Verified Paypal Accounts hack
*Any social media account hack
*Android & iPhone Hack
*Word Press Blogs hack
*Text message interception hack
*email interception hack
- See more at [email protected] +16692005256
Hello, have you contacted Dolph Anderson before? if yes what is your experience about our services? Do you need a trust worthy hacker to hack into any of the following such as Facebook hack, whats-app hack, Instagram hack, Database hack, website hack, educational Institution hack, ATM machine hack, Erasing of criminal record, increasing your credit scores and many more... alliance hacker is ever ready to give you a perfect result. we also Install software that we enable you monitor your spouse or kids where about, such as cellphone, laptop and desktops. with just little money, we guarantee you a 100% job satisfactory.... for further information about our services please contact us today at [email protected]
Hey if you ever need to get into your spouse’s account, improve credit points, Blank ATMs, bank account hack,full mobile phone hack, trace locations, home or office monitoring camera hack, clear criminal records,tax, protection from spyware or simply have a score to settle or any other issues that need addressing, completely secure and fast!! I have been in desperate need of a genuine hacker for a very long time, throughout my search i came across quite a good number of fakes who ripped me. As time goes on I came across a woman’s post called Katie Russell commenting about a Hacker called Kenny BlackHat and I made up my mind to try for the last time or forget about everything that was when I met a good and trusted hacker ever since 8months of my research. very efficient and fast hacker and believe me I never expected him to be different an he didn’t talk much than to do his job and get paid. Do mention the name Daniel Ward , contact him at, kennyblackhat at hackermail dot com when contacting him he can be very wary which is very understandable good luck. text him on 717-388-3985
How to identify which admin among the many admins in the group has removed/dismissed someone as admin?
Schedule Posts:
#1 - Use XDA search;
#2 - Use search in ROM's threads;
#3 - Use Google search for only XDA specific threads.
How to SEARCH on XDA Forum
XDA Forum Rule 1 said:
1. Search before posting.
Use one of our search functions before posting, whether you have a question or something new to share, it's very likely someone already asked that question or shared that news.
Click to expand...
Click to collapse
Click to expand...
Click to collapse
First you must decide what you are looking for. Exactly.
A word, a phrase, an expression, etc you know better.
Now you just need to enter to the section dedicated to search by accessing the link below, and follow few steps to find what you need:
Forum Advanced Search
View attachment 2576942
View attachment 2576926 View attachment 2576927
Foto "Search 3"
View attachment 2576928
Step 1: Type the word/phrase you search in the box "search by keywords"; (Foto "search 3" - 1)
Step 2: Specifies whether you want to be in search of POSTS or only in TITLES; (Foto "search 3" - 2)
Step 3: Specify whether you want to make your search, in a specific forum (like in my example: Samsung Galaxy S Advance I9070) or in ALL XDA Forum; (Foto "search 3" - 3)
Step 4: If you are looking for something exactly in the posts you can choose the display to be made in the form of posts; (Foto "search 3" - 4)
Step 5: HIT SEARCH ! (Foto "search 3" - 5)
Results: Wow, works!
View attachment 2576929
Use search in a specific thread - ROM's, Q&A etc
So, to search in a specific threads, when he has so many posts or pages for a keyword like "overclock" (my example), "build", "release" or a phrase is specified as follows:
Step 1: Enter the desired thread;
Step 2: On that thread right up there in a box that says: "Search this Thread" View attachment 2577079 which has two different buttons near.
The magnifying glass is for Simple Search View attachment 2577074 other is for Complex Search View attachment 2577075.
Step 3: For Simple Search, you just need to type the desired keyword or phrase in that box mentioned on Step 2 (search this thread) and press View attachment 2577074. See foto bellow for more info's :
View attachment 2577112 View attachment 2577113
Step 4: : For Complex Search by an word or phrase and / or user posts in that thread, use button View attachment 2577075. Then type in the new window opened the word/phrase you want and / or user (if you know it obviously) and press "Search".
View attachment 2577114 View attachment 2577115
Step 5: Results
View attachment 2577163 View attachment 2577202 View attachment 2577164
Use Google search for only XDA specific threads
So search using the Google search engine to bring only results from the XDA forum is pretty simple.
In the Google search box you must enter the word or phrase desired after previously entered this words "xda-developers" before your desired word/s searched.
For more relevant results you cand put the phrase "site: forum.xda-developers.com" after your keyword that you are looking for, and the results are MORE RELEVANT.
See the attachments bellow:
View attachment 2577215 View attachment 2577216
Last one just in case.
R_a_z_v_a_n said:
Last one just in case.
Click to expand...
Click to collapse
I suggest you make a new thread with the new XDA interface. I just came here following the link in your signature.
AndroidMaster1909 said:
I suggest you make a new thread with the new XDA interface. I just came here following the link in your signature.
Click to expand...
Click to collapse
That is a good suggestion. I will do that as soon as i can find some free time. :good:
Thanks
Thanks.
$on said:
How to automatically arrange search results by date? The search keeps showing me old results from 2010 - 2013 !
Click to expand...
Click to collapse
Try to select your choice in the search page: see attach
View attachment 4270159
I am working on a project in which, I want to create an Android App. The app will open a website in background, wait for the page to load. Then, it will find something on the page. After that it will do a specific task. Then, wait for the process to be completed. If the process gets completed, it will have some delay. Then, it'll reopen the url again and thenafter repeat the same task in a cycle.
It should continue doing the directed tasks until any unwanted system or wanted user interruption.
I've searched a lot on web to know that if something could be done in this route. But, I couldn't find anything helpful.
I want something similar to
HTML:
https://youtu.be/BGU2X5lrz9M
Here, in the above mentioned tutorial, he is using Python Script for making an Instagram bot for PC. The bot will open Browser, then the Instagram's Feed, then will find the button by text "Like" and then go back, thenafter it'll repeat the cycle.
I want something similar.
1). But, instead of Liking every post/photo, I want my bot to comment something on the posts of people whom I or the person using the bot is following on Instagram.
2). Second thing is, this process is being done on the main window. I want this process to be done in background.
3). He is doing it in(for) PC. I want to do it in/for Android.
4). I may follow his tutorial for PC and using Python. But, how would I do it using Java or Kotlin in Android Studio.
I started to do some research and build a very very beginning level app. Which You may find
HTML:
https://drive.google.com/file/d/17ZQ_w-Gc0jOV8Tn-QDGFdFHPyxculn6B/view?usp=drivesdk
??here
I am open to suggestions.
Please check the project and if it is possible to achieve what I want from only some modifications in my current project, then please do tell me.
Please tell me the solutions, hints, suggestions, advice, anything helpful in this project except a downvote .
If you find anything ineligible or wrong according to the forum then, please before downvoting, let me know in the comments section.
Thank You So Much in advance!
Have a nice day ahead.
P.S. :- If this question should be asked in any other forum of stack exchange then please comment it's name. I'll immediately put down this question from here and ask it in the respective forum. Thanks!
HTML:
https://youtu.be/BGU2X5lrz9M https://drive.google.com/file/d/17ZQ_w-Gc0jOV8Tn-QDGFdFHPyxculn6B/view?usp=drivesdk