<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: benjamin arthur</title>
    <description>The latest articles on DEV Community by benjamin arthur (@benjamin_arthur_002b6b9cd).</description>
    <link>https://dev.to/benjamin_arthur_002b6b9cd</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4091511%2Fcec1b078-eaca-4324-8375-50ba6e583964.png</url>
      <title>DEV Community: benjamin arthur</title>
      <link>https://dev.to/benjamin_arthur_002b6b9cd</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/benjamin_arthur_002b6b9cd"/>
    <language>en</language>
    <item>
      <title>GettiyHikerAPI Working with Osintgram in Termux</title>
      <dc:creator>benjamin arthur</dc:creator>
      <pubDate>Mon, 24 Aug 2026 03:53:48 +0000</pubDate>
      <link>https://dev.to/benjamin_arthur_002b6b9cd/gettiyhikerapi-working-with-osintgram-in-termux-5372</link>
      <guid>https://dev.to/benjamin_arthur_002b6b9cd/gettiyhikerapi-working-with-osintgram-in-termux-5372</guid>
      <description>&lt;p&gt;Getting HikerAPI Working with Osintgram in Termux&lt;/p&gt;

&lt;p&gt;I've been experimenting with running Osintgram from Termux on Android and connecting it to HikerAPI.&lt;/p&gt;

&lt;p&gt;The setup had a few confusing parts because Osintgram contains different API-related components. At first, I was checking the "hikerapi" Python package and its "Client" class, but the main Osintgram code also uses "instagram_private_api".&lt;/p&gt;

&lt;p&gt;After checking the source code, I found that the HikerAPI integration is handled through "src/hikercli.py", where the HikerAPI client is initialized with an access token.&lt;/p&gt;

&lt;p&gt;The authentication part eventually worked. The first error I received was an unauthorized-request message, which turned out to be related to the HikerAPI token. After configuring the token correctly, the response changed to a message saying the account needed to be topped up.&lt;/p&gt;

&lt;p&gt;That was actually useful because it showed me that the API authentication was working and that the remaining issue was account credit rather than my Python installation.&lt;/p&gt;

&lt;p&gt;The basic API request pattern is:&lt;/p&gt;

&lt;p&gt;import requests&lt;/p&gt;

&lt;p&gt;headers = {"x-access-key": "YOUR_KEY"}&lt;/p&gt;

&lt;p&gt;r = requests.get(&lt;br&gt;
    "&lt;a href="https://api.hikerapi.com/v2/user/by/username?username=natgeo" rel="noopener noreferrer"&gt;https://api.hikerapi.com/v2/user/by/username?username=natgeo&lt;/a&gt;",&lt;br&gt;
    headers=headers&lt;br&gt;
)&lt;/p&gt;

&lt;p&gt;print(r.json())&lt;/p&gt;

&lt;p&gt;One thing that was harder than expected was figuring out which API client Osintgram was actually using. Looking only at the installed Python packages made the setup more confusing than it needed to be.&lt;/p&gt;

&lt;p&gt;I'm still experimenting with the setup and learning how the different pieces fit together.&lt;/p&gt;

&lt;p&gt;If you've used HikerAPI, Osintgram, or similar APIs from Termux/Python, what did your setup look like, and is there anything you'd recommend doing differently?&lt;/p&gt;

</description>
      <category>android</category>
      <category>api</category>
      <category>cybersecurity</category>
      <category>python</category>
    </item>
    <item>
      <title>Getting HikerAPI Working with Osintgram in Termux

I've been experimenting with running Osintgram from Termux on Android and connecting it to HikerAPI.

The setup had a few confusing parts because Osintgram contains different API-related components. At fir</title>
      <dc:creator>benjamin arthur</dc:creator>
      <pubDate>Mon, 24 Aug 2026 03:38:12 +0000</pubDate>
      <link>https://dev.to/benjamin_arthur_002b6b9cd/getting-hikerapi-working-with-osintgram-in-termux-ive-been-experimenting-with-running-osintgram-51c0</link>
      <guid>https://dev.to/benjamin_arthur_002b6b9cd/getting-hikerapi-working-with-osintgram-in-termux-ive-been-experimenting-with-running-osintgram-51c0</guid>
      <description></description>
    </item>
  </channel>
</rss>
