Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
I want to query information about my app's user Info (name, id...)
In twitter (PHP).
What I want to know how I can reuse the token credentials of user???
I have done that but with my Twitter session. It means I must login with my twitter account, after that I can query information about my app's user (That's not correct!!!!!).
Please read this, this will be useful for your query :-
http://mikerogers.io/2013/02/25/how-use-twitter-oauth-1-1-javascriptjquery.html
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
On my site I have used fb login and I can do it easily for my site. But as we have users fb login id and other details, is it possible to generate facebook login time stamp for user for www.facebook.com.
Something like varifying how many times user performs facebook login and how many times he comes to my site.
or something nearer to this if possible
I don't fully understand what you want to do, if you just want a timestamp for when you receive the response from Facebook then you can just create one on your side of the code using time(). If you want to know anything about the user's login habits beyond you're site then that isn't possible due to privacy reasons I imagine.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
I have a toy winning website for kids. I have created a facebook app. I want to send notification to all the member of app when any kid wins a toy. how to handle this please support ASAP. thanks
You can use the Notifications API to send the notification to the app users.
Remember- your app must be a canvas app (app inside facebook)
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
I am able to post on users wall of my application, now I want to post the Facebook pages created by others. For example, suppose I want to post feeds on Coca Cola page through my application.
Any help or suggestion would be greatly appreciated.
The same API is used to post on the page's wall-
$facebook->api("/PAGE_ID/feed" , {params}, "POST");
Note: Not on every page you can post on their wall. It depends on the privacy settings of the page .
For eg, If they don't allow such actions, you'll get the respnse error as-
The target user has not authorized this action
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
I am trying to conditionally style user-to-user messages on my site based on the following:
If the user has not yet accessed the message, it remains bold ("unread").
If the user clicks the link and accesses it, it goes from bold to unbold ("read")
(reference: this is how many email inboxes work)
Question: How would I check if the user has clicked on the link to view their new message, or if they have not? As in, how would I store this information and indicate that it has been "read"?
Try adding a column to your messages' table (for example read) and set this column to 1 when the user has read his message?
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
How I can create a php file to check mysql database if there is new row inserted ?
any article for this ?
thanks in advance.
Use google cloud messaging and modify your insert script
https://developer.android.com/google/gcm/index.html
the google site has API examples