Комментарии:
you are man of the world ilike u
ОтветитьHHHHH
Ответитьthis looks super fun, for sure trying this build next playthrough
Ответитьno github repo link this dude a scam lol wait i found it lol gotta pay to see it lmfao
ОтветитьI HATE YOU STOP GOING ON MY AUTOPLAY AT 4 AM I DONT WANT TO WAKE UP WITH YOUR VIDEOOOSS
ОтветитьBuild All-In-One courier Delivery with admin panels custom and courier app
ОтветитьI think you should make another video on payment proof.
ОтветитьGreat videos man, you are helping and teaching to a lot of people around the world, send you a hug from mexico, if one day you come to mexico city i owe you some tacos 👍
ОтветитьNice one 👍👍
Ответитьfailed with your first steps now im stuck cause mine is looking different on vscode to yours
Ответитьcan you make colne of threads...!
ОтветитьAfter building this clone, can I circulate this among my friends and ask them to open an account here and post something so that I can see their posts and they can see mine in the Newsfeed of this clone ?
ОтветитьI deployed this on netlify and it was working fine. Then the app log in authentication suddenly stopping working last night and got the following error.
'This URL Is Blocked The URL "my app URL" has been blocked from Facebook.'
Got the following error in Meta for developer app, 'This domain has been identified as malicious and/or abusive.'
How do I fix this? Thank you.
Edit: it works on localhost.
when i install it dont have pages or styles
ОтветитьThe code is not showing up properly. wasted time..
Ответитьsomeone help me please
i got this error
TypeError: _firebase__WEBPACK_IMPORTED_MODULE_4__.storage.ref is not a function
.then((doc) => {
30 | if (imageToPost) {
> 31 | const uploadTask = storage
| ^
32 | .ref(`posts/${doc.id}`)
33 | .putString(imageToPost, "data_url");
Hey guy you're really handsome. No homo though 😀
Ответитьdoesn't accept auth
the sign in page from facebook redirects to out sign in component page
is it next js 13 ?
ОтветитьOh you build face book in 3hrs 39 min ,great, Mark Zuckerberg must know that he spent his whole life building Facebook,how could you do it Sony Sangha ,in quite a less span of time 😂😂😂,I know you might feel thinking my substance of research in your video length but the title of this video indicated that you build face book in 3hrs 39 minutes,😂😂😂🤫😁,just roasting you
ОтветитьPls what is the name of the instrumental beat used in the beginning of this video
ОтветитьYou were using vscodium instead of vscode?
ОтветитьHi folks , can someone tell me before i start building? :D whats the different between this build and the one that Sonny built 2 years ago at the other live session? the contact bar and media querry?
ОтветитьLove your videos. Just bought the github repo access. Thanks Sonny. Love that you're representing the UK too!
Ответитьwhy i run npm run dev it delete file .env.local
Ответитьwhy
Ответитьplease rep me
Ответитьwhy cannot add .env.local
Ответитьhow to get icon facebook in this video
ОтветитьMY firebase storage is giving error i.e. storage is not a function
Ответитьthose of you stock the provider import if you're using latest nextauth
This is coded with typescript(.tsx files instead of .js)
here is my code
import { SessionProvider } from "next-auth/react"
import type { Session } from "next-auth"
function MyApp({ Component,pageProps:{ session, ...pageProps } }: AppProps<{ session: Session }>) {
//const status=getSession()
return
<SessionProvider session={session} >
<Component {...pageProps} />
</SessionProvider>
}
export default MyApp
extras
onClick={()=>signIn()}
Facebook component
import { Session } from 'next-auth'
session:Session as loginprops
I'm facing an issue when uploading a post is not reflecting in firebase. can anyone help I did the same as it is in the video
ОтветитьCan we convert this into apk?
Ответить🔴
ОтветитьHi Sonny. can you do a video of cloning a facebook and integrate it with with ecommence website within the Facebook App as in one App.
Ответитьthis guy is a legend
ОтветитьYou are a great man
ОтветитьWhy we need to use Next-Auth for auth system .Can we do auth without Next-Auth libaries?What is the key of using Next-Auth.
I feel like writing react app without knowing javascript
Nice video good video
ОтветитьWhere’s the share post part?
Ответитьthank you so much for your video, it's very helpfully
ОтветитьHello - you are amazing! Are you based in London?
Ответитьimport NextAuth from "next-auth";
import Providers from "next-auth/providers";
export default NextAuth({
providers: [
Providers.Google({
clientId: process.env.GOOGLE_CLIENT_ID,
clientSecret: process.env.GOOGLE_CLIENT_SECRET,
}),
],
pages: {
signIn: "/signin",
},
});
using this as my validation
import { providers, signIn, getSession, csrfToken } from "next-auth/client";
function signin({ providers }) {
return (
<div>
{Object.values(providers).map((provider) => {
return (
<div key={provider.name}>
<button onClick={() => signIn(provider.id)}>
Sign in with {provider.name}
</button>
</div>
);
})}
</div>
);
}
export default signin;
export async function getServerSideProps(context) {
const { req } = context;
const session = await getSession({ req });
if (session) {
return {
redirect: { destination: "/" },
};
}
return {
props: {
providers: await providers(context),
csrfToken: await csrfToken(context),
},
};
}
this is my sign in
I am able to get it to the google login but it fails the validation with a client id error