oEmbed 메타데이터

useYoutubeOEmbed로 YouTube 메타데이터를 선택적으로 가져올 수 있습니다.

import { useYoutubeOEmbed } from 'react-native-youtube-bridge';

function App() {
  const { oEmbed, isLoading, error } = useYoutubeOEmbed(
    'https://www.youtube.com/watch?v=AbZH7XWDW_k',
  );

  if (isLoading) return null;
  if (error) return null;

  return <Text>{oEmbed?.title}</Text>;
}