<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>api arşivleri - Zülfü Mehmet</title>
	<atom:link href="https://www.zulfumehmet.com/tag/api/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.zulfumehmet.com/tag/api/</link>
	<description>Kişisel Bir Olay</description>
	<lastBuildDate>Tue, 30 Apr 2024 11:45:56 +0000</lastBuildDate>
	<language>tr</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.7</generator>

<image>
	<url>https://www.zulfumehmet.com/wp-content/uploads/2016/10/favicon.ico</url>
	<title>api arşivleri - Zülfü Mehmet</title>
	<link>https://www.zulfumehmet.com/tag/api/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Excel&#8217;de Api Kullanarak QrCode Üretmek</title>
		<link>https://www.zulfumehmet.com/excelde-api-kullanarak-qrcode-uretmek/</link>
					<comments>https://www.zulfumehmet.com/excelde-api-kullanarak-qrcode-uretmek/#comments</comments>
		
		<dc:creator><![CDATA[Zülfü Mehmet ÖZÇİFÇİ]]></dc:creator>
		<pubDate>Tue, 09 Jan 2024 12:45:52 +0000</pubDate>
				<category><![CDATA[Bilgisayar]]></category>
		<category><![CDATA[Genel]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[excel]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[qrcode]]></category>
		<guid isPermaLink="false">https://www.zulfumehmet.com/?p=5352</guid>

					<description><![CDATA[<p>Merhaba Excel&#8217;de Api Kullanarak QrCode Üretmek hakkında daha önce google api kullanarak nasıl qr code üretebildiğimize değinmiştik, google qrcode api hizmetini kapattığı için artık kullanılamamaktadır. Bunu yerine farklı bir api kullanarak Excel üzerinden api hizmetinden yararlanıp qrCode üreteceğiz. Örnek kodumuz aynı olmasına rağmen sadece tek farklılık google api yerine tec-it.com qrcode api hizmetinden yararlanacağız. Örnek &#8230; <a href="https://www.zulfumehmet.com/excelde-api-kullanarak-qrcode-uretmek/" class="more-link">Continue reading <span class="screen-reader-text">Excel&#8217;de Api Kullanarak QrCode Üretmek</span></a></p>
<p>The post <a href="https://www.zulfumehmet.com/excelde-api-kullanarak-qrcode-uretmek/">Excel&#8217;de Api Kullanarak QrCode Üretmek</a> appeared first on <a href="https://www.zulfumehmet.com">Zülfü Mehmet</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Merhaba Excel&#8217;de Api Kullanarak QrCode Üretmek hakkında daha önce <a href="https://www.zulfumehmet.com/excelde-google-api-kullanrak-qrcode-uretmek/">google api</a> kullanarak nasıl qr code üretebildiğimize değinmiştik, google qrcode api hizmetini kapattığı için artık kullanılamamaktadır. Bunu yerine farklı bir api kullanarak Excel üzerinden api hizmetinden yararlanıp qrCode üreteceğiz.</p>
<p>Örnek kodumuz aynı olmasına rağmen sadece tek farklılık google api yerine tec-it.com qrcode api hizmetinden yararlanacağız.<br />
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script><br />
<!-- Makale_ici --><br />
<ins class="adsbygoogle" style="display: block;" data-ad-client="ca-pub-1000738755084616" data-ad-slot="2280084802" data-ad-format="auto" data-full-width-responsive="true"></ins><br />
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script><br />
Örnek makro kodlarımız:</p>
<pre class="brush: php; title: ; notranslate">Function QRuret(qrcode_value As String) 'QRuret adında bir fonksiyon oluşturuyoruz

ebat = ActiveSheet.Range(&quot;B1&quot;)

Dim URL As String
Dim My_Cell As Range

Set My_Cell = Application.Caller
URL = &quot;https://qrcode.tec-it.com/API/QRCode?data=&quot; &amp; qrcode_value &amp; &quot;&amp;backcolor=%23ffffff&amp;size=&quot; &amp; ebat ' api cagrıldı

On Error Resume Next
ActiveSheet.Pictures(&quot;My_QR_CODE_&quot; &amp; My_Cell.Address(False, False)).Delete
On Error GoTo 0
ActiveSheet.Pictures.Insert(URL).Select
With Selection.ShapeRange(1)
.Name = &quot;My_QR_CODE_&quot; &amp; My_Cell.Address(False, False)
.Left = My_Cell.Left + 5
.Top = My_Cell.Top + 5
End With
End Function</pre>
<p>Yukarda belirtiğimiz kod yardımı ile QRuret formülünü kullanarak istediğimiz hücreye qr code ekleyebiliriz.</p>
<p><a href="https://www.zulfumehmet.com/excelde-api-kullanarak-qrcode-uretmek/qrekleme/" rel="attachment wp-att-5353"><img fetchpriority="high" decoding="async" class="alignnone size-full wp-image-5353" src="https://www.zulfumehmet.com/wp-content/uploads/2024/01/qrekleme.png" alt="" width="371" height="496" srcset="https://www.zulfumehmet.com/wp-content/uploads/2024/01/qrekleme.png?v=1704803732 371w, https://www.zulfumehmet.com/wp-content/uploads/2024/01/qrekleme-224x300.png?v=1704803732 224w" sizes="(max-width: 371px) 100vw, 371px" /></a></p>
<p>Daha önceki makalede kullandığımız gibi bir formül yardımı ile istediğiniz hücredeki değeri qrcode çevirebiliyorsunuz. Bir kaç revize yaparak kullanabilirsiniz. Örnek projede iki adet sayfa bulunmakta. Biri small küçük qr code diğeri ise normal ebat qrcode içindir.</p>
<p>İşinize yaramasını umarım.</p>
<p><script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script><br />
<!-- Makale_ici --><br />
<ins class="adsbygoogle" style="display: block;" data-ad-client="ca-pub-1000738755084616" data-ad-slot="2280084802" data-ad-format="auto" data-full-width-responsive="true"></ins><br />
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script></p>
<p>Örnek Projeyi indirmek için aşağıdaki buton yardımı ile indirebilirsiniz.</p>
<p><a href="https://www.zulfumehmet.com/?attachment_id=5355"><img decoding="async" class="alignnone size-full wp-image-196" src="https://www.zulfumehmet.com/wp-content/uploads/2016/10/download.png" alt="" width="150" height="44" /></a></p>
<p>İyi çalışmalar dilerim. Takıldığınız yerlerde yorumlara bildirseniz konu hakkında bilgisi olan farklı kişiler de size yardımcı olabilecektir. Mail yoluyla ulaşmamanızı rica ederim.</p>
<p>The post <a href="https://www.zulfumehmet.com/excelde-api-kullanarak-qrcode-uretmek/">Excel&#8217;de Api Kullanarak QrCode Üretmek</a> appeared first on <a href="https://www.zulfumehmet.com">Zülfü Mehmet</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.zulfumehmet.com/excelde-api-kullanarak-qrcode-uretmek/feed/</wfw:commentRss>
			<slash:comments>5</slash:comments>
		
		
			</item>
		<item>
		<title>Ücretsiz Güncel Piyasa Verileri</title>
		<link>https://www.zulfumehmet.com/ucretsiz-guncel-piyasa-verileri/</link>
					<comments>https://www.zulfumehmet.com/ucretsiz-guncel-piyasa-verileri/#comments</comments>
		
		<dc:creator><![CDATA[Zülfü Mehmet ÖZÇİFÇİ]]></dc:creator>
		<pubDate>Wed, 27 Jan 2021 07:11:49 +0000</pubDate>
				<category><![CDATA[En Çok Okunanlar]]></category>
		<category><![CDATA[Web Tasarım]]></category>
		<category><![CDATA[alış]]></category>
		<category><![CDATA[altın]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[döviz]]></category>
		<category><![CDATA[satış]]></category>
		<category><![CDATA[ücretsiz]]></category>
		<category><![CDATA[veriler]]></category>
		<guid isPermaLink="false">https://www.zulfumehmet.com/?p=4454</guid>

					<description><![CDATA[<p>Projelerinde altın ve döviz verilerini kullanarak yazılım geliştirenler için yayına aldığım hızlı ve ücretsiz olarak API hizmetini yayına aldık. Bu api sayesinde hafta içi 10 dakikada bir güncellenen altın ve döviz alış ve satış verilerine kolaylıkla erişebilirsiniz. Güncel api verileri döviz kısmında, ABD Doları, Euro, Sterlin olmak üzere toplam 13 ülkenin para birimi ve altın &#8230; <a href="https://www.zulfumehmet.com/ucretsiz-guncel-piyasa-verileri/" class="more-link">Continue reading <span class="screen-reader-text">Ücretsiz Güncel Piyasa Verileri</span></a></p>
<p>The post <a href="https://www.zulfumehmet.com/ucretsiz-guncel-piyasa-verileri/">Ücretsiz Güncel Piyasa Verileri</a> appeared first on <a href="https://www.zulfumehmet.com">Zülfü Mehmet</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Projelerinde altın ve döviz verilerini kullanarak yazılım geliştirenler için yayına aldığım hızlı ve ücretsiz olarak API hizmetini yayına aldık. Bu api sayesinde hafta içi 10 dakikada bir güncellenen altın ve döviz alış ve satış verilerine kolaylıkla erişebilirsiniz.</p>
<p>Güncel api verileri döviz kısmında, ABD Doları, Euro, Sterlin olmak üzere toplam 13 ülkenin para birimi ve altın olarak ons, gram altın birlikte olmak üzere toplam 9 adet altın alış ve satış verilerine erişebilirsiniz.</p>
<p>Api adresi : <a href="https://www.zulfumehmet.com/api/piyasa.json">https://www.zulfumehmet.com/api/piyasa.json </a><br />
<!-- Makale_ici --><br />
<ins class="adsbygoogle" style="display: block;" data-ad-client="ca-pub-1000738755084616" data-ad-slot="2280084802" data-ad-format="auto" data-full-width-responsive="true"></ins><br />
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script><br />
Örnek api:</p>
<p><img decoding="async" class="alignnone size-full wp-image-4456" src="https://www.zulfumehmet.com/wp-content/uploads/2021/01/api1.png" alt="" width="1317" height="214" srcset="https://www.zulfumehmet.com/wp-content/uploads/2021/01/api1.png?v=1654869867 1317w, https://www.zulfumehmet.com/wp-content/uploads/2021/01/api1-300x49.png?v=1654869867 300w, https://www.zulfumehmet.com/wp-content/uploads/2021/01/api1-1024x166.png?v=1654869867 1024w, https://www.zulfumehmet.com/wp-content/uploads/2021/01/api1-768x125.png?v=1654869867 768w" sizes="(max-width: 1317px) 100vw, 1317px" /></p>
<h4>Api yi nasıl kullanabiliriz</h4>
<p>Veriler json formatında kayıtlı olduğu için php ile ufak bir örnek vereyim,</p>
<pre class="brush: php; title: ; notranslate">&lt;?php
$url = 'https://www.zulfumehmet.com/api/piyasa.json'; //veri cekilecek api adresimiz
$veri = file_get_contents($url);
$data = json_decode($veri, 1);
print_r($data);</pre>
<p>Örnek döviz verileri</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-4455" src="https://www.zulfumehmet.com/wp-content/uploads/2021/01/doviz.png" alt="" width="489" height="887" srcset="https://www.zulfumehmet.com/wp-content/uploads/2021/01/doviz.png?v=1654869868 489w, https://www.zulfumehmet.com/wp-content/uploads/2021/01/doviz-165x300.png?v=1654869868 165w" sizes="auto, (max-width: 489px) 100vw, 489px" /></p>
<p><!-- Makale_ici --><br />
<ins class="adsbygoogle" style="display: block;" data-ad-client="ca-pub-1000738755084616" data-ad-slot="2280084802" data-ad-format="auto" data-full-width-responsive="true"></ins><br />
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script><br />
Örnek altın verileri</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-4458" src="https://www.zulfumehmet.com/wp-content/uploads/2021/01/altin.png" alt="" width="607" height="877" srcset="https://www.zulfumehmet.com/wp-content/uploads/2021/01/altin.png?v=1654869865 607w, https://www.zulfumehmet.com/wp-content/uploads/2021/01/altin-208x300.png?v=1654869865 208w" sizes="auto, (max-width: 607px) 100vw, 607px" /></p>
<p>İşinize yaraması umuduyla.</p>
<p>The post <a href="https://www.zulfumehmet.com/ucretsiz-guncel-piyasa-verileri/">Ücretsiz Güncel Piyasa Verileri</a> appeared first on <a href="https://www.zulfumehmet.com">Zülfü Mehmet</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.zulfumehmet.com/ucretsiz-guncel-piyasa-verileri/feed/</wfw:commentRss>
			<slash:comments>10</slash:comments>
		
		
			</item>
		<item>
		<title>Instagram API İle Fotağraflarınızı Web Sitenizde Yayınlayınız.</title>
		<link>https://www.zulfumehmet.com/instagram-api-ile-fotagraflarinizi-web-sitenizde-yayinayiniz/</link>
					<comments>https://www.zulfumehmet.com/instagram-api-ile-fotagraflarinizi-web-sitenizde-yayinayiniz/#comments</comments>
		
		<dc:creator><![CDATA[Zülfü Mehmet ÖZÇİFÇİ]]></dc:creator>
		<pubDate>Mon, 10 Jun 2019 13:05:56 +0000</pubDate>
				<category><![CDATA[Genel]]></category>
		<category><![CDATA[Web Tasarım]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[çekme]]></category>
		<category><![CDATA[Fotoğraf]]></category>
		<category><![CDATA[instagram]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[oluşturma]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[token]]></category>
		<category><![CDATA[web sitesi]]></category>
		<guid isPermaLink="false">https://www.zulfumehmet.com/?p=4008</guid>

					<description><![CDATA[<p>Merhaba, günümüz internet ağında hemen hemen herkes sosyal ağ ve bu sosyal ağlardan instagramı kullanıyor. Instagram neredeyse artık herkesin kullandığı ve özellikle kurumsal firmalar, giyim ve gıda gibi firmaların sürekli kullandığı ve ürünlerini sürekli paylaştığı bir platform haline geldi. Peki bu firmalar yada kişisel siteleri olan kullanıcılar instagramda paylaştığı fotoğrafları web sitelerinde yayınlamak istiyorlarsa ne &#8230; <a href="https://www.zulfumehmet.com/instagram-api-ile-fotagraflarinizi-web-sitenizde-yayinayiniz/" class="more-link">Continue reading <span class="screen-reader-text">Instagram API İle Fotağraflarınızı Web Sitenizde Yayınlayınız.</span></a></p>
<p>The post <a href="https://www.zulfumehmet.com/instagram-api-ile-fotagraflarinizi-web-sitenizde-yayinayiniz/">Instagram API İle Fotağraflarınızı Web Sitenizde Yayınlayınız.</a> appeared first on <a href="https://www.zulfumehmet.com">Zülfü Mehmet</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Merhaba, günümüz internet ağında hemen hemen herkes sosyal ağ ve bu sosyal ağlardan instagramı kullanıyor. Instagram neredeyse artık herkesin kullandığı ve özellikle kurumsal firmalar, giyim ve gıda gibi firmaların sürekli kullandığı ve ürünlerini sürekli paylaştığı bir platform haline geldi. Peki bu firmalar yada kişisel siteleri olan kullanıcılar instagramda paylaştığı fotoğrafları web sitelerinde yayınlamak istiyorlarsa ne yapmaları gerektiğine değineceğiz. Yapacağımız işlemlerde ilk önce instagram developer üye olup bir adet api oluşturarak bu api aracılığı ile hem jquery hem de php yardımı ile fotoğraflarımızı nasıl çekebileceğimize değineceğim. Kullandığım projelerde jquery ile çekerken bazen sıkıntı yaşıyordum, bu yüzden php ile çekmek a tasarım açısından daha kolaylık sağladığını söyleyebilirim. Ben yinede her iki kullanım yönteminden bahsedeceğim. Hadi başlayalım.</p>
<h4>Api Üyeliğini Başlatma</h4>
<p>İlk önce <a href="https://www.instagram.com" target="_blank" rel="noopener noreferrer">https://www.instagram.com</a> adresine giriş yapalım ve ardından <a href="https://www.instagram.com/developer/" target="_blank" rel="noopener noreferrer">https://www.instagram.com/developer/</a> adresine girelim.</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-4020" src="https://www.zulfumehmet.com/wp-content/uploads/2019/06/register1.png" alt="" width="450" height="261" srcset="https://www.zulfumehmet.com/wp-content/uploads/2019/06/register1.png?v=1654870146 450w, https://www.zulfumehmet.com/wp-content/uploads/2019/06/register1-300x174.png?v=1654870146 300w" sizes="auto, (max-width: 450px) 100vw, 450px" /></p>
<p><strong>Register You Application</strong> butonuna tıklayınız</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-4019" src="https://www.zulfumehmet.com/wp-content/uploads/2019/06/register2.png" alt="" width="817" height="560" srcset="https://www.zulfumehmet.com/wp-content/uploads/2019/06/register2.png?v=1654870154 817w, https://www.zulfumehmet.com/wp-content/uploads/2019/06/register2-300x206.png?v=1654870154 300w, https://www.zulfumehmet.com/wp-content/uploads/2019/06/register2-768x526.png?v=1654870154 768w, https://www.zulfumehmet.com/wp-content/uploads/2019/06/register2-220x150.png?v=1654870154 220w" sizes="auto, (max-width: 817px) 100vw, 817px" /></p>
<p>accept the API kutucuğunu işaretleyiniz.</p>
<p>Yukarıdaki formu doldurup <strong>Sign up</strong> butonuna tıklayınız.</p>
<h4>Api Oluşturma</h4>
<p><img loading="lazy" decoding="async" class="alignnone wp-image-4010 size-full" src="https://www.zulfumehmet.com/wp-content/uploads/2019/06/instaapi1.png" alt="" width="629" height="148" srcset="https://www.zulfumehmet.com/wp-content/uploads/2019/06/instaapi1.png?v=1654870161 629w, https://www.zulfumehmet.com/wp-content/uploads/2019/06/instaapi1-300x71.png?v=1654870161 300w" sizes="auto, (max-width: 629px) 100vw, 629px" /><br />
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script><br />
<!-- Makale_ici --><br />
<ins class="adsbygoogle"
     style="display:block"
     data-ad-client="ca-pub-1000738755084616"
     data-ad-slot="2280084802"
     data-ad-format="auto"
     data-full-width-responsive="true"></ins><br />
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script><br />
Üyeliğimizi oluşturduk ve <strong>Register a New Client</strong> butonuna tıklayınız.</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-4011" src="https://www.zulfumehmet.com/wp-content/uploads/2019/06/instaapi2.png" alt="" width="706" height="888" srcset="https://www.zulfumehmet.com/wp-content/uploads/2019/06/instaapi2.png?v=1654870161 706w, https://www.zulfumehmet.com/wp-content/uploads/2019/06/instaapi2-239x300.png?v=1654870161 239w" sizes="auto, (max-width: 706px) 100vw, 706px" /></p>
<p>Yukarıdaki gibi formu doldurunuz. Web sitenizi hangi protokolde kullanıyorsanız http yada https ile giriniz ve ardından <strong>Register</strong> butonuna tıklayınız.</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-4012" src="https://www.zulfumehmet.com/wp-content/uploads/2019/06/instaapi3.png" alt="" width="740" height="296" srcset="https://www.zulfumehmet.com/wp-content/uploads/2019/06/instaapi3.png?v=1654870159 740w, https://www.zulfumehmet.com/wp-content/uploads/2019/06/instaapi3-300x120.png?v=1654870159 300w" sizes="auto, (max-width: 740px) 100vw, 740px" /></p>
<p>Apimizi oluşturduk. Apinin aktif olması için bir kaç işlem daha yapacağız bunun için <strong>MANAGE</strong> butonuna tıklayınız.</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-4013" src="https://www.zulfumehmet.com/wp-content/uploads/2019/06/instaapi4.png" alt="" width="702" height="653" srcset="https://www.zulfumehmet.com/wp-content/uploads/2019/06/instaapi4.png?v=1654870159 702w, https://www.zulfumehmet.com/wp-content/uploads/2019/06/instaapi4-300x279.png?v=1654870159 300w" sizes="auto, (max-width: 702px) 100vw, 702px" /></p>
<p>Açılan menüden <strong>Security</strong> butonuna tıklayınız. Buradaki işlemlerin amacı apiyi oluşturup token almak istediğimizde şöyle bir hata mesajı veriyor.</p>
<pre class="brush: php; title: ; notranslate">{&quot;error_type&quot;: &quot;OAuthForbiddenException&quot;, &quot;code&quot;: 403, &quot;error_message&quot;: &quot;Implicit authentication is disabled&quot;}</pre>
<p>Bu hata mesajının önüne geçmek.</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-4014" src="https://www.zulfumehmet.com/wp-content/uploads/2019/06/instaapi5.png" alt="" width="718" height="654" srcset="https://www.zulfumehmet.com/wp-content/uploads/2019/06/instaapi5.png?v=1654870158 718w, https://www.zulfumehmet.com/wp-content/uploads/2019/06/instaapi5-300x273.png?v=1654870158 300w" sizes="auto, (max-width: 718px) 100vw, 718px" /></p>
<p>Normalde seçili <strong>Disable implicit OAuth</strong> seçili değil ama her ne hikmetse seçili gibi görünüyor ve apimiz çalışmıyor. Bunun için önce <strong>Disable implicit OAuth </strong>bir defa tıklıyoruz ve seçili hale getiriyoruz. Hiç bir şey yapmadan seçimi kaldıracağız</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-4009" src="https://www.zulfumehmet.com/wp-content/uploads/2019/06/instaapi6.png" alt="" width="724" height="645" srcset="https://www.zulfumehmet.com/wp-content/uploads/2019/06/instaapi6.png?v=1654870162 724w, https://www.zulfumehmet.com/wp-content/uploads/2019/06/instaapi6-300x267.png?v=1654870162 300w" sizes="auto, (max-width: 724px) 100vw, 724px" /></p>
<p>Yukarıda <strong>Disable implicit OAuth</strong> seçili  olarak işaretledik şimdi işareti kaldırıyoruz ve <strong>Update Client</strong> butonuna tıklıyoruz. Api oluşturma kısmı bitti ve şimdi sıra geldi tokeni almaya</p>
<h4>Instagram Token Oluşturma</h4>
<p>Fotorğafları çekebilmemiz için bize token gerekecek bununiçin aşağıdaki adresi kendi bilgilerinize göre dolurunuz</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-4016" src="https://www.zulfumehmet.com/wp-content/uploads/2019/06/clientid.png" alt="" width="735" height="226" srcset="https://www.zulfumehmet.com/wp-content/uploads/2019/06/clientid.png?v=1654870157 735w, https://www.zulfumehmet.com/wp-content/uploads/2019/06/clientid-300x92.png?v=1654870157 300w" sizes="auto, (max-width: 735px) 100vw, 735px" /></p>
<p>Yukaraki client id ve api oluştururken verdiğimiz bilgileri aşağıdaki ilgili yerlere girelim</p>
<p>https://instagram.com/oauth/authorize/?client_id=<strong>CLIENT_ID_NO</strong>&amp;redirect_uri=<strong>URL_ADRESİ</strong>&amp;response_type=token</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-4017" src="https://www.zulfumehmet.com/wp-content/uploads/2019/06/token1.png" alt="" width="1037" height="547" srcset="https://www.zulfumehmet.com/wp-content/uploads/2019/06/token1.png?v=1654870156 1037w, https://www.zulfumehmet.com/wp-content/uploads/2019/06/token1-300x158.png?v=1654870156 300w, https://www.zulfumehmet.com/wp-content/uploads/2019/06/token1-1024x540.png?v=1654870156 1024w, https://www.zulfumehmet.com/wp-content/uploads/2019/06/token1-768x405.png?v=1654870156 768w" sizes="auto, (max-width: 1037px) 100vw, 1037px" /></p>
<p>Tarayıcıdan bilgilerimiz ile girdikten sonra aşağıdaki gibi bir uyarı ekranı gelecek. <strong>Yetki Ver</strong> diyerek tokenimizi alıyoruz.</p>
<h4><img loading="lazy" decoding="async" class="alignnone size-full wp-image-4018" src="https://www.zulfumehmet.com/wp-content/uploads/2019/06/token2.png" alt="" width="936" height="356" srcset="https://www.zulfumehmet.com/wp-content/uploads/2019/06/token2.png?v=1654870155 936w, https://www.zulfumehmet.com/wp-content/uploads/2019/06/token2-300x114.png?v=1654870155 300w, https://www.zulfumehmet.com/wp-content/uploads/2019/06/token2-768x292.png?v=1654870155 768w" sizes="auto, (max-width: 936px) 100vw, 936px" /></h4>
<p>Yetki ver butonuna tıkladık bizi web sitemize yönlendirdi. adres kısmında tokenmizi bir yere not alıyoruz.<br />
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script><br />
<!-- Makale_ici --><br />
<ins class="adsbygoogle"
     style="display:block"
     data-ad-client="ca-pub-1000738755084616"
     data-ad-slot="2280084802"
     data-ad-format="auto"
     data-full-width-responsive="true"></ins><br />
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script></p>
<h5>Instagram API ile Son Fotoğrafları Çekme</h5>
<p>Tokenimizi aldıktan sonra sıra geldi fotoğraflarımızı çekmeye. Bize gerekli olacak işlemleri sırası ile yapalım. Genelde tokenin ilk noktaya olan kısmı bizim id numaramız oluyor ama siz yinede farklı bir siteden de kontrol edebilirsiniz.</p>
<p>Bize gerekli olacak olan User ID numarasını öğrenmek için <a href="https://codeofaninja.com/tools/find-instagram-user-id" target="_blank" rel="noopener noreferrer">https://codeofaninja.com/tools/find-instagram-user-id</a> yada benzeri herhangi bir siteye girelim</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-4015" src="https://www.zulfumehmet.com/wp-content/uploads/2019/06/userid.png" alt="" width="367" height="264" srcset="https://www.zulfumehmet.com/wp-content/uploads/2019/06/userid.png?v=1654870157 367w, https://www.zulfumehmet.com/wp-content/uploads/2019/06/userid-300x216.png?v=1654870157 300w" sizes="auto, (max-width: 367px) 100vw, 367px" /></p>
<p>Yukarıdaki User ID not alalım</p>
<h4><img loading="lazy" decoding="async" class="alignnone size-full wp-image-4018" src="https://www.zulfumehmet.com/wp-content/uploads/2019/06/token2.png" alt="" width="936" height="356" srcset="https://www.zulfumehmet.com/wp-content/uploads/2019/06/token2.png?v=1654870155 936w, https://www.zulfumehmet.com/wp-content/uploads/2019/06/token2-300x114.png?v=1654870155 300w, https://www.zulfumehmet.com/wp-content/uploads/2019/06/token2-768x292.png?v=1654870155 768w" sizes="auto, (max-width: 936px) 100vw, 936px" /></h4>
<p>Tokenimizi de kopyalayalım</p>
<h5>Php İle Fotoğraları Çekme</h5>
<pre class="brush: php; title: ; notranslate">&lt;?php
$jsonUrl = &quot;https://api.instagram.com/v1/users/1110204063/media/recent/?access_token=1110204063.3160f48.454b2e99a67d40eda5fa11dc06bb3486&amp;count=9&quot;;
$json = file_get_contents($jsonUrl);
$obj = json_decode($json, true);
foreach ($obj&#x5B;&quot;data&quot;] as $post){
    $cekiminstabuyuk=str_replace(&quot;http://&quot;, &quot;https://&quot;, $post&#x5B;&quot;images&quot;]&#x5B;&quot;standard_resolution&quot;]&#x5B;&quot;url&quot;]);
	$cekiminstakucuk=str_replace(&quot;http://&quot;, &quot;https://&quot;, $post&#x5B;&quot;images&quot;]&#x5B;&quot;low_resolution&quot;]&#x5B;&quot;url&quot;]);
	echo '&lt;div class=&quot;item&quot;&gt;&lt;a href=&quot;'.$cekiminstabuyuk.'&quot; class=&quot;galeri&quot;&gt;&lt;img src=&quot;'.$cekiminstakucuk.'&quot; class=&quot;animated&quot;&gt; &lt;div class=&quot;gallery-overlay&quot;&gt;&lt;div class=&quot;gallery-overlay-inner&quot;&gt;&lt;i class=&quot;fa fa-instagram&quot; aria-hidden=&quot;true&quot;&gt;&lt;/i&gt;&lt;/div&gt; &lt;/div&gt;&lt;/a&gt; &lt;/div&gt;';
	
}

?&gt;</pre>
<p><strong>$jsonUrl</strong> kısmındaki User ID ve token bilgilerinizi girdikten sonra sayfayı kontrol edelim, count=9 da 9 adet fotoğraf çekmek istediğimizi bildiriyoruz. Bu sayıyı değiştirebilirsiniz.</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-4024" src="https://www.zulfumehmet.com/wp-content/uploads/2019/06/phpcekim.png" alt="" width="456" height="815" srcset="https://www.zulfumehmet.com/wp-content/uploads/2019/06/phpcekim.png?v=1654870136 456w, https://www.zulfumehmet.com/wp-content/uploads/2019/06/phpcekim-168x300.png?v=1654870136 168w" sizes="auto, (max-width: 456px) 100vw, 456px" /></p>
<h5>Jquery İle Fotoğraları Çekme</h5>
<p>Jquery yardımı ile çeklim birde</p>
<pre class="brush: php; title: ; notranslate">&lt;script src=&quot;https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js&quot;&gt;&lt;/script&gt;
&lt;script&gt;
$(function() {
$.ajax({
type: &quot;GET&quot;,
dataType: &quot;jsonp&quot;,
cache: false,
url: &quot;https://api.instagram.com/v1/users/1110204063/media/recent/?access_token=1110204063.95d0041.4bc0ef95f09b444f8502e871a0e4f7af&quot;,
success: function(data) {
for (var i = 0; i &lt; 7; i++) {
$(&quot;#instagrams&quot;).append(&quot;&lt;li &gt;&lt;a target='_blank' href='&quot; + data.data&#x5B;i].images.standard_resolution.url +&quot;'&gt;&lt;img src='&quot; + data.data&#x5B;i].images.low_resolution.url +&quot;' /&gt;&lt;/a&gt;&lt;/li&gt;&quot;);
}

}
});
});
&lt;/script&gt;</pre>
<p>Aynı şekilde <strong>url</strong> kısmındaki User ID ve token bilgilerinizi değiştiriniz.</p>
<p>Jquery ile for (var i = 0; i &lt; <strong>7</strong>; i++) { 7 olarak belirtiğim kısım son 7 fotoğrafı baz almakta siz bunu istediğiniz kadar azaltıp yükseltebilirsiniz.</p>
<p>Dip not:</p>
<pre class="brush: php; title: ; notranslate">Eğer popüler fotoğrafları görüntülemek istiyorsak ;
url: &quot;https://api.instagram.com/v1/media/popular?client_id=&#x5B;ClientID]&amp;access_token=&#x5B;CODE]&quot;

Eğer kişisel fotoğraflarımızı görüntülemek istiyorsak ;
url: &quot;https://api.instagram.com/v1/users/&#x5B;UserID]/media/recent/?access_token=&#x5B;CODE]&quot;

Eğer belirttiğimiz bir etikete göre son fotoğrafları görüntülemek istiyorsak;
url: &quot;https://api.instagram.com/v1/tags/&#x5B;TAG]/media/recent?client_id=&#x5B;ClientID]&amp;access_token=&#x5B;CODE]&quot;

Eğer belirlediğimiz bir yere göre son fotoğrafları görüntülemek istiyorsak;
url: &quot;https://api.instagram.com/v1/media/search?lat=&#x5B;LAT]&amp;lng=&#x5B;LNG]&amp;distance=&#x5B;DST]?client_id=&#x5B;ClientID]&amp;access_token=&#x5B;CODE]&quot;</pre>
<p><script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script><br />
<!-- Makale_ici --><br />
<ins class="adsbygoogle"
     style="display:block"
     data-ad-client="ca-pub-1000738755084616"
     data-ad-slot="2280084802"
     data-ad-format="auto"
     data-full-width-responsive="true"></ins><br />
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script></p>
<p>Örnek demo için tıklayınız <a href="https://www.zulfumehmet.com/insta.php" target="_new" rel="noopener noreferrer">https://www.zulfumehmet.com/insta.php </a></p>
<p>İşlemlerimiz bu kadar.</p>
<p>The post <a href="https://www.zulfumehmet.com/instagram-api-ile-fotagraflarinizi-web-sitenizde-yayinayiniz/">Instagram API İle Fotağraflarınızı Web Sitenizde Yayınlayınız.</a> appeared first on <a href="https://www.zulfumehmet.com">Zülfü Mehmet</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.zulfumehmet.com/instagram-api-ile-fotagraflarinizi-web-sitenizde-yayinayiniz/feed/</wfw:commentRss>
			<slash:comments>3</slash:comments>
		
		
			</item>
	</channel>
</rss>
