Posts by Thiago Prado • 71 points
7 posts
-
1
votes1
answer574
viewsA: Pipe not found - Angular 5
I solved the problem, it happened that I was using Pipe inside a component inside a Shared module. And my Pipe module was being called in a single application module. Thus, the component within the…
angularanswered Thiago Prado 71 -
2
votes1
answer574
viewsQ: Pipe not found - Angular 5
I’m having a problem creating a custom Pipe. I created the following module (Pipes.modulets.): import { NgModule } from '@angular/core'; import { CommonModule } from '@angular/common'; import {…
angularasked Thiago Prado 71 -
0
votes1
answer86
viewsA: Save Facebook Image to Database
Follow three alternatives: copy("https://graph.facebook.com/"+id+"/picture?width=600"); Or fopen("http://graph.facebook.com/"+id+"/picture"); Or…
-
0
votes1
answer73
viewsA: Authentication of Facebook
You can use only one APP and in the settings inform the domains on which your APP will run. And to answer the second question, Token does not authenticate in different Apps.
-
0
votes1
answer329
viewsA: Facebook Api does not receive Email permission
HTML: Basically, once the login is done, you will call in the callLoginMethod() method that will display the information. <div class="fb-login-button"…
-
0
votes1
answer167
viewsA: Facebook Open Graph Image
the solution was to put the following code snippet on the page: $.post( 'https://graph.facebook.com', { id: 'http://www.minhaurl.com.br', scrape: true }, function(response){ console.log(response); }…
-
1
votes1
answer167
viewsQ: Facebook Open Graph Image
I have the social plugin on a particular website, and every day the thumbnail images (Open Graph Image) are changed. Every day I need to enter the URL: https://developers.facebook.com/tools/debug/…