<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
	
	>
<channel>
	<title>
	Comentarios en: Cómo abrir los enlaces de Facebook en el navegador	</title>
	<atom:link href="https://www.androidjefe.com/links-facebook-navegador-normal-solucion/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.androidjefe.com/links-facebook-navegador-normal-solucion/</link>
	<description>Blog sobre celulares, aplicaciones móviles, consejos y tutoriales sobre Android.</description>
	<lastBuildDate>Tue, 24 Feb 2026 18:39:41 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>
	<item>
		<title>
		Por: Cesar Cardosomora		</title>
		<link>https://www.androidjefe.com/links-facebook-navegador-normal-solucion/comment-page-1/#comment-151112</link>

		<dc:creator><![CDATA[Cesar Cardosomora]]></dc:creator>
		<pubDate>Tue, 28 Jun 2022 05:21:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.androidjefe.com/?p=5713#comment-151112</guid>

					<description><![CDATA[Gracias]]></description>
			<content:encoded><![CDATA[<p>Gracias</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Por: Freddie		</title>
		<link>https://www.androidjefe.com/links-facebook-navegador-normal-solucion/comment-page-1/#comment-146122</link>

		<dc:creator><![CDATA[Freddie]]></dc:creator>
		<pubDate>Mon, 29 Jun 2020 21:44:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.androidjefe.com/?p=5713#comment-146122</guid>

					<description><![CDATA[En respuesta a &lt;a href=&quot;https://www.androidjefe.com/links-facebook-navegador-normal-solucion/comment-page-1/#comment-133550&quot;&gt;Ezequiel&lt;/a&gt;.

Sí es posible hacer que el link abra en Facebook App Browser, si usted es el dueño del site, solo tiene que crear un script en React como el ejemplo: 

import React, { useCallback } from &quot;react&quot;;
import { Alert, Button, Linking, StyleSheet, View } from &quot;react-native&quot;;

const supportedURL = &quot;https://google.com&quot;;

const unsupportedURL = &quot;slack://open?team=123456&quot;;

const OpenURLButton = ({ url, children }) =&#062; {
  const handlePress = useCallback(async () =&#062; {
    // Checking if the link is supported for links with custom URL scheme.
    const supported = await Linking.canOpenURL(url);

    if (supported) {
      // Opening the link with some app, if the URL scheme is &quot;http&quot; the web link should be opened
      // by some browser in the mobile
      await Linking.openURL(url);
    } else {
      Alert.alert(`Don&#039;t know how to open this URL: ${url}`);
    }
  }, [url]);

  return ;
};

const App = () =&#062; {
  return (
    
      Open Supported URL
      Open Unsupported URL
    
  );
};

export default App;

const styles = StyleSheet.create({
  container: { flex: 1, justifyContent: &quot;center&quot;, alignItems: &quot;center&quot; },
});

Facebook funciona con React Native... puede buscar documentation en 

https://reactnative.dev/docs/linking 

https://github.com/seeden/react-facebook]]></description>
			<content:encoded><![CDATA[<p>En respuesta a <a href="https://www.androidjefe.com/links-facebook-navegador-normal-solucion/comment-page-1/#comment-133550">Ezequiel</a>.</p>
<p>Sí es posible hacer que el link abra en Facebook App Browser, si usted es el dueño del site, solo tiene que crear un script en React como el ejemplo: </p>
<p>import React, { useCallback } from «react»;<br />
import { Alert, Button, Linking, StyleSheet, View } from «react-native»;</p>
<p>const supportedURL = «https://google.com»;</p>
<p>const unsupportedURL = «slack://open?team=123456»;</p>
<p>const OpenURLButton = ({ url, children }) =&gt; {<br />
  const handlePress = useCallback(async () =&gt; {<br />
    // Checking if the link is supported for links with custom URL scheme.<br />
    const supported = await Linking.canOpenURL(url);</p>
<p>    if (supported) {<br />
      // Opening the link with some app, if the URL scheme is «http» the web link should be opened<br />
      // by some browser in the mobile<br />
      await Linking.openURL(url);<br />
    } else {<br />
      Alert.alert(`Don&#8217;t know how to open this URL: ${url}`);<br />
    }<br />
  }, [url]);</p>
<p>  return ;<br />
};</p>
<p>const App = () =&gt; {<br />
  return (</p>
<p>      Open Supported URL<br />
      Open Unsupported URL</p>
<p>  );<br />
};</p>
<p>export default App;</p>
<p>const styles = StyleSheet.create({<br />
  container: { flex: 1, justifyContent: «center», alignItems: «center» },<br />
});</p>
<p>Facebook funciona con React Native&#8230; puede buscar documentation en </p>
<p><a href="https://reactnative.dev/docs/linking" rel="nofollow ugc">https://reactnative.dev/docs/linking</a> </p>
<p><a href="https://github.com/seeden/react-facebook" rel="nofollow ugc">https://github.com/seeden/react-facebook</a></p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Por: Santiago S.		</title>
		<link>https://www.androidjefe.com/links-facebook-navegador-normal-solucion/comment-page-1/#comment-133551</link>

		<dc:creator><![CDATA[Santiago S.]]></dc:creator>
		<pubDate>Thu, 20 Apr 2017 08:14:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.androidjefe.com/?p=5713#comment-133551</guid>

					<description><![CDATA[En respuesta a &lt;a href=&quot;https://www.androidjefe.com/links-facebook-navegador-normal-solucion/comment-page-1/#comment-133550&quot;&gt;Ezequiel&lt;/a&gt;.

Me temo que no es posible. Solo los usuarios pueden configurar que los links se abran en un navegador externo, en los ajustes de Facebook en su dispositivo.]]></description>
			<content:encoded><![CDATA[<p>En respuesta a <a href="https://www.androidjefe.com/links-facebook-navegador-normal-solucion/comment-page-1/#comment-133550">Ezequiel</a>.</p>
<p>Me temo que no es posible. Solo los usuarios pueden configurar que los links se abran en un navegador externo, en los ajustes de Facebook en su dispositivo.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Por: Ezequiel		</title>
		<link>https://www.androidjefe.com/links-facebook-navegador-normal-solucion/comment-page-1/#comment-133550</link>

		<dc:creator><![CDATA[Ezequiel]]></dc:creator>
		<pubDate>Thu, 20 Apr 2017 07:52:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.androidjefe.com/?p=5713#comment-133550</guid>

					<description><![CDATA[Hola.  Quiero compartir desde mi fanpage el enlace de una Tienda Online desde la cual vendo varios productos. El problema es que la mayoría de las visitas provienen de mobiles y no de ordenador, cuando mis clientes intentan abrir el enlace desde su celular se cierra la página, porque se les abre desde el navegador de facebook. Hay alguna manera de poner un link y que este se abra fuera del navegador de facebook con alguna herramienta? o sí o si va depender de como tengan configurado la cuenta? Espero se entiendo, espero tu respuesta.Gracias]]></description>
			<content:encoded><![CDATA[<p>Hola.  Quiero compartir desde mi fanpage el enlace de una Tienda Online desde la cual vendo varios productos. El problema es que la mayoría de las visitas provienen de mobiles y no de ordenador, cuando mis clientes intentan abrir el enlace desde su celular se cierra la página, porque se les abre desde el navegador de facebook. Hay alguna manera de poner un link y que este se abra fuera del navegador de facebook con alguna herramienta? o sí o si va depender de como tengan configurado la cuenta? Espero se entiendo, espero tu respuesta.Gracias</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Por: eduardo		</title>
		<link>https://www.androidjefe.com/links-facebook-navegador-normal-solucion/comment-page-1/#comment-132204</link>

		<dc:creator><![CDATA[eduardo]]></dc:creator>
		<pubDate>Thu, 13 Apr 2017 07:15:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.androidjefe.com/?p=5713#comment-132204</guid>

					<description><![CDATA[y si descargo un archivo stando en el mismo navegador que me arroja face donde quedan por q despues le doy abrir y no m los abre]]></description>
			<content:encoded><![CDATA[<p>y si descargo un archivo stando en el mismo navegador que me arroja face donde quedan por q despues le doy abrir y no m los abre</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Por: sharon Dayana Rosales Ramírez		</title>
		<link>https://www.androidjefe.com/links-facebook-navegador-normal-solucion/comment-page-1/#comment-113074</link>

		<dc:creator><![CDATA[sharon Dayana Rosales Ramírez]]></dc:creator>
		<pubDate>Thu, 29 Dec 2016 13:18:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.androidjefe.com/?p=5713#comment-113074</guid>

					<description><![CDATA[por  que?  cuando kiero dentrar ami facebook normal me sale como.mi navegador opera mini q puedo aser]]></description>
			<content:encoded><![CDATA[<p>por  que?  cuando kiero dentrar ami facebook normal me sale como.mi navegador opera mini q puedo aser</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Por: Karina		</title>
		<link>https://www.androidjefe.com/links-facebook-navegador-normal-solucion/comment-page-1/#comment-78865</link>

		<dc:creator><![CDATA[Karina]]></dc:creator>
		<pubDate>Mon, 29 Aug 2016 01:24:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.androidjefe.com/?p=5713#comment-78865</guid>

					<description><![CDATA[En respuesta a &lt;a href=&quot;https://www.androidjefe.com/links-facebook-navegador-normal-solucion/comment-page-1/#comment-67520&quot;&gt;Jesus&lt;/a&gt;.

A mi me pasa igual, es molesto ya que no puedo usar Chrome.  Las actualizaciones cada vez están peor.]]></description>
			<content:encoded><![CDATA[<p>En respuesta a <a href="https://www.androidjefe.com/links-facebook-navegador-normal-solucion/comment-page-1/#comment-67520">Jesus</a>.</p>
<p>A mi me pasa igual, es molesto ya que no puedo usar Chrome.  Las actualizaciones cada vez están peor.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Por: Santiago S.		</title>
		<link>https://www.androidjefe.com/links-facebook-navegador-normal-solucion/comment-page-1/#comment-78247</link>

		<dc:creator><![CDATA[Santiago S.]]></dc:creator>
		<pubDate>Sat, 27 Aug 2016 05:01:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.androidjefe.com/?p=5713#comment-78247</guid>

					<description><![CDATA[En respuesta a &lt;a href=&quot;https://www.androidjefe.com/links-facebook-navegador-normal-solucion/comment-page-1/#comment-78192&quot;&gt;javier stark&lt;/a&gt;.

Te recomiendo probar Brave. Este navegador te permite abrir enlaces mientras vas bajando tu Feed de Facebook.]]></description>
			<content:encoded><![CDATA[<p>En respuesta a <a href="https://www.androidjefe.com/links-facebook-navegador-normal-solucion/comment-page-1/#comment-78192">javier stark</a>.</p>
<p>Te recomiendo probar Brave. Este navegador te permite abrir enlaces mientras vas bajando tu Feed de Facebook.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Por: javier stark		</title>
		<link>https://www.androidjefe.com/links-facebook-navegador-normal-solucion/comment-page-1/#comment-78192</link>

		<dc:creator><![CDATA[javier stark]]></dc:creator>
		<pubDate>Sat, 27 Aug 2016 01:21:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.androidjefe.com/?p=5713#comment-78192</guid>

					<description><![CDATA[a mi me pasa que abro enlaces con el navegador de facebook y estos se cierran solos por eso prefiero usar uno externo]]></description>
			<content:encoded><![CDATA[<p>a mi me pasa que abro enlaces con el navegador de facebook y estos se cierran solos por eso prefiero usar uno externo</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Por: Jesus		</title>
		<link>https://www.androidjefe.com/links-facebook-navegador-normal-solucion/comment-page-1/#comment-67520</link>

		<dc:creator><![CDATA[Jesus]]></dc:creator>
		<pubDate>Mon, 18 Jul 2016 18:26:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.androidjefe.com/?p=5713#comment-67520</guid>

					<description><![CDATA[Ya lo hise tal como dijo y aun no puedo habrir enlaces me dice que use mis datos]]></description>
			<content:encoded><![CDATA[<p>Ya lo hise tal como dijo y aun no puedo habrir enlaces me dice que use mis datos</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
