# How to log in to Facebook with Julia?

**URL:** https://discourse.julialang.org/t/how-to-log-in-to-facebook-with-julia/110301
**Category:** General Usage
**Created:** [February 16, 2024, 3:48pm UTC](https://discourse.julialang.org/t/how-to-log-in-to-facebook-with-julia/110301 "2024-02-16T15:48:08Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![programista](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/programista/32/5372_2.png) [@programista](https://discourse.julialang.org/u/programista)
#### Post date: [February 16, 2024, 3:48pm UTC](https://discourse.julialang.org/t/how-to-log-in-to-facebook-with-julia/110301/1 "2024-02-16T15:48:08Z")

</div>

I would like to automate browsing my FB, how to start optimally with Julia  
Paul

---

<div class="post-metadata">

### Author: ![mrufsvold](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/mrufsvold/32/31600_2.png) [@mrufsvold](https://discourse.julialang.org/u/mrufsvold)
#### Post date: [February 16, 2024, 4:16pm UTC](https://discourse.julialang.org/t/how-to-log-in-to-facebook-with-julia/110301/2 "2024-02-16T16:16:26Z")

</div>

It would be helpful if you would narrow down exactly what you are trying to automate. Facebook provides a [Graph API (facebook.com)](https://developers.facebook.com/docs/graph-api/) for automating interacting with their site. You can absolutely use the HTTP.jl library to send requests to their API.

If you want to drive a browser and automate “clicking” around the Facebook website… that’s going to be nearly impossible in any language. Facebook is notorious for making it as difficult as possible to automate interactions with their frontend because they want to prevent scraping.

---

<div class="post-metadata">

### Author: ![programista](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/programista/32/5372_2.png) [@programista](https://discourse.julialang.org/u/programista)
#### Post date: [February 16, 2024, 4:52pm UTC](https://discourse.julialang.org/t/how-to-log-in-to-facebook-with-julia/110301/3 "2024-02-16T16:52:23Z")

</div>

Thanks, I just need to track the activity of selected profiles, monitor their content, time, and download posts. No clicking interactions.
