Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have this FQL query

select uid, name, website
from user
where website != "" and uid in (
    select uid2
    from friend
    where uid1 = me()
)

I tested this query in the FQL console a couple of months ago, and it worked fine. Now I try it again and I have this error:

the error

that can be translated in english like "An error occurred. We are working to solve it soon". I tried with different queries and no one work, all throw the same error. Someone have any suggestions?

share|improve this question

1 Answer

up vote 0 down vote accepted

Since an unspecified version, Facebook doesn't allow to query some private parameters (like the websites). So my old query is not valid now.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.