{"id":24211506,"url":"https://github.com/ramibch/django-linkedin-posts","last_synced_at":"2026-02-12T22:05:06.801Z","repository":{"id":193320312,"uuid":"688600346","full_name":"ramibch/django-linkedin-posts","owner":"ramibch","description":"An app to manage Linkedin posts in a Django project","archived":true,"fork":false,"pushed_at":"2023-12-02T07:24:33.000Z","size":40,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-14T06:22:08.890Z","etag":null,"topics":["django","django-application","django-applications","linkedin","linkedin-api","marketing-automation","social-media"],"latest_commit_sha":null,"homepage":"https://pypi.org/project/django-linkedin-posts/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ramibch.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-09-07T17:29:48.000Z","updated_at":"2025-07-30T12:15:03.000Z","dependencies_parsed_at":null,"dependency_job_id":"1d2e9f19-2c0c-4ff6-bde7-1f9d2c8c339b","html_url":"https://github.com/ramibch/django-linkedin-posts","commit_stats":null,"previous_names":["ramiboutas/django-linkedin-posts","ramibch/django-linkedin-posts"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/ramibch/django-linkedin-posts","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ramibch%2Fdjango-linkedin-posts","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ramibch%2Fdjango-linkedin-posts/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ramibch%2Fdjango-linkedin-posts/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ramibch%2Fdjango-linkedin-posts/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ramibch","download_url":"https://codeload.github.com/ramibch/django-linkedin-posts/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ramibch%2Fdjango-linkedin-posts/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29382904,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-12T20:34:40.886Z","status":"ssl_error","status_checked_at":"2026-02-12T20:23:00.490Z","response_time":55,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["django","django-application","django-applications","linkedin","linkedin-api","marketing-automation","social-media"],"created_at":"2025-01-14T02:35:35.256Z","updated_at":"2026-02-12T22:05:06.748Z","avatar_url":"https://github.com/ramibch.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# django-linkedin-posts\n\n\n## Set up\n\n0. Get your Linkedin Access Token\n[https://www.linkedin.com/developers/tools/oauth/token-generator](https://www.linkedin.com/developers/tools/oauth/token-generator)\n1. Install from PyPI\n```\npython -m pip install django-linkedin-posts\n```\n2. Add the package to your settings INSTALLED_APPS\n```python\n\nINSTALLED_APPS = [\n    ...\n    \"django_linkedin_posts\",\n    ...\n]\n```\n3. Add the following setting variables\n\n```python\n## thid-party apps\n\n# django-linkedin-posts (our app)\nimport os\nfrom dotenv import load_dotenv # python-dotenv\n\nload_dotenv() \n\nLINKEDIN_AUTHOR_TPYE = \"organization\" # \"organization\" or \"person\"\nLINKEDIN_AUTHOR_ID = os.environ.get(\"LINKEDIN_AUTHOR_ID\")\nLINKEDIN_ACCESS_TOKEN = os.environ.get(\"LINKEDIN_ACCESS_TOKEN\")\n\n## The following keys are not needed at the moment\n## But they are planned to be used.\n## For example for updating the Access Token using the Refresh Token\n# LINKEDIN_CLIENT_ID = os.environ.get(\"LINKEDIN_CLIENT_ID\")\n# LINKEDIN_CLIENT_SECRET = os.environ.get(\"LINKEDIN_CLIENT_SECRET\") \n# LINKEDIN_REFRESH_TOKEN = os.environ.get(\"LINKEDIN_REFRESH_TOKEN\") \n\n```\n\n## Usage\n\n### Create a simple Post\n\n```python\nfrom django_linkedin_posts.models import Post\n\n# create a post instance in the db\npost = Post.objects.create(\n    comment=\"Hi, this is me publishing a post using django-linkedin-posts\"\n)\n\n# share it in Linkedin \npost.share()\n\n\n```\n\n\n\n### Create a poll with options \n\n```python\nfrom django_linkedin_posts.models import create_poll_with_options\n\n# create a poll with its options. \np = create_poll_with_options(\"hello\", \"What's up?\", [\"good\", \"bad\"])\n\n# share it\np.share()\n\n\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Framibch%2Fdjango-linkedin-posts","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Framibch%2Fdjango-linkedin-posts","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Framibch%2Fdjango-linkedin-posts/lists"}