|
Web dev and programming discussions forums
|
|
|
|
||
View original thread with replies |
|||
| Tags: | , , , | ||
Get Full Profile Pic using API? Or PID of profile pic? Help!Same problem, Make profile categories only editable by admins but still visible on profile pagesHi there! I would like to make a Category on my Drupal profiles only editable by Administrators or a particular role group. So users can't change them on their own. But I would like to make these profile category fields still visible on profile pages. Has anyone done this before, is this possible? Thanks! Bugs: Change Profile Picture & Thumbnail for Application's ProfileI have been having tons of trouble trying to change my Application's Profile Picture. SSL <fb:profile-pic> not delivering profile over https, mixed warningI've just discovered something when experimenting, so this must be a bug. SSL <fb:profile-pic> not delivering profile over https, mixed warningHi, Profile tab application slow after adding to profile tabI just removed the code to allow adding it to a profile page and the runtime is back down to 0.0137 seconds. HELP! Can't get add to profile button and profile information to showPosted by guitar2ner in Profile boxes - HELP! Can't get add to profile button and profile information to show
Ok thanks for your response. HELP! Can't get add to profile button and profile information to showPosted by dburns in Profile boxes - HELP! Can't get add to profile button and profile information to show
Yes, profile boxes will go way. Profile tabs will remain. HELP! Can't get add to profile button and profile information to showPosted by guitar2ner in Profile boxes - HELP! Can't get add to profile button and profile information to show
Hi Everyone HELP! Can't get add to profile button and profile information to showPosted by dburns in Profile boxes - HELP! Can't get add to profile button and profile information to show
You don't seem to be creating the facebook object before using it, or authorizing. Add this before the $facebook line: Profile tab application slow after adding to profile tabMy app ran in canvas mode in a fraction of a second server time before adding code to allow a profile tab. Now server side execution time is over 10 seconds. Is that normal? I'm using the PHP library and php 5.2.10. Re: [invalid.profile.access]. You don't have access to the profile - URGENTLucian,
Thanks for your response.
So you mean that I need to send 2 headers. 1 will be with the signatures that I build and the other will be with the tokens that I have with me... If the second option of sending the tokens as separate headers, then do you know how will I do that in CURL request in PHP.. ???
Thanks & Regards, Muthukumar Re: [invalid.profile.access]. You don't have access to the profile - URGENTI think the problem is in how you are handling the x-li-auth-token header. This should be a separate HTTP header and should not be part of the signature. Take a look at this doc for more specific information: Accessing Out of Network Profiles Re: [invalid.profile.access]. You don't have access to the profile - URGENTHi,
I am waiting for your reply. For your information I am giving you more details about the header that I send while the request is sent to LinkedIn for profile api URL:
HEADERS:
1st TRY
Authorization: OAuth realm="https%3A%2F%2Fapi.linkedin.com",oauth_version="1.0",oauth_nonce="b9e150283441b074565ecb8cc79d4086",oauth_timestamp="1267599006",oauth_consumer_key="9D8m8tSUxbSu01wpwN4m2LuIpn5epc6jyDuzUO5V5JDSts5nwdKwUf39j_qOgShz",oauth_token="0d679813-d3af-4f7b-80e5-a12af42065b9",oauth_signature_method="HMAC-SHA1",oauth_signature="JnxdWLz7AjgSlcqX%2B%2FmetIFtGpo%3D",x-li-auth-token:OUT_OF_NETWORK:ZRh1
>>> NO ENCODING urlencode_rfc3986
2nd TRY Authorization: OAuth realm="https%3A%2F%2Fapi.linkedin.com",oauth_version="1.0",oauth_nonce="fbed976778085ef0461f61faeee494bd",oauth_timestamp="1267599236",oauth_consumer_key="9D8m8tSUxbSu01wpwN4m2LuIpn5epc6jyDuzUO5V5JDSts5nwdKwUf39j_qOgShz",oauth_token="0d679813-d3af-4f7b-80e5-a12af42065b9",oauth_signature_method="HMAC-SHA1",oauth_signature="r%2FF1uI9OKUeHG6%2F7pCjqGf66Wco%3D",x-li-auth-token="OUT_OF_NETWORK%3AZRh1"
>>> ENCODING urlencode_rfc3986 with = in between name and value pair
3rd TRY Authorization: OAuth realm="https%3A%2F%2Fapi.linkedin.com",oauth_version="1.0",oauth_nonce="e2633659f644c44e7366d923e61406ee",oauth_timestamp="1267599309",oauth_consumer_key="nZINpmgV3jzk8hjOOKrSsE6s0ounZC8YVBWFnHhTyohnyy-0Y4riH-ek90SjeZ3f",oauth_token="304c3d32-9c5a-40f9-8ed9-b6b89d40f684",oauth_signature_method="HMAC-SHA1",oauth_signature="wQ8nSnJe2Ahz4lxt2lnpZS2E%2FG8%3D",x-li-auth-token:"OUT_OF_NETWORK%3AZRh1"
>>> ENCODING urlencode_rfc3986 with : in between name and value pair
Response:
401 1267599042448 0000 [invalid.profile.access]. You don't have access to the profile
Please let me know what is the problem with the headers that I have set so that I am able to get response from LinkedIn with all the details about the person. i am able to get response with the complete details about the person if that person is in my network or in group.
Let me know your reply as early as possible.. Please its urgent...
Thanks & Regards, Muthukumar Re: [invalid.profile.access]. You don't have access to the profile - URGENTLucian,
Nothing seems to be working for me when I send request with multiple headers that I create. Please help me to get a proper request that can be send which gives me no error. The following is the curl request that I send to LinkedIn.
curl_setopt($curl, CURLOPT_HTTPHEADER, array($auth_header, "x-li-auth-token=>OUT_OF_NETWORK:6QcL"));
$auth_header = Authorization: OAuth realm="https%3A%2F%2Fapi.linkedin.com",oauth_version="1.0",oauth_nonce="59015cd75ad39af165ebb54adffab998",oauth_timestamp="1267678093",oauth_consumer_key="nZINpmgV3jzk8hjOOKrSsE6s0ounZC8YVBWFnHhTyohnyy-0Y4riH-ek90SjeZ3f",oauth_token="304c3d32-9c5a-40f9-8ed9-b6b89d40f684",oauth_signature_method="HMAC-SHA1",oauth_signature="1YXphMg7XpzBRr90eKYVqjSjAg0%3D"
URL:
Please check the curl request that I send as well...
$curl = curl_init(); $data = curl_exec($curl);
Please anyone who knows how to send multiple headers in php curl, please help me out to let me know how can we do so, this will help me to get the profile of people who are there out of network...
Please help me and let me know since I have never sent multiple headers in as a curl request...
Awaiting for a reply from anyone, please revert.
Thanks & Regards, Muthukumar
RE: Invalid ICC Profile
Jan 25, 2010 Many thanks Pete FOP 0.93 was the stable release when this project was implemented. We will not go to a newer version until there is a specific bug fix or enhancement that would be required. The Invalid ICC Profile was caused by a user who...
Re: Permanent Profile URL Feb 23, 2010 * Lil Peck <lilp### @gmail.com> [100223 10:48]: > On Mon, Feb 22, 2010 at 11:10 PM, Paul Tarjan <pta### @gmail.com> wrote: > > Is there a permanent profile URL for users? Something like > > > >...
sfDoctrineGuard and more than one Profile Jan 31, 2010 Hi every: I'm building a application based on Symfony and sfDoctrineGuard. The ER design of the DB have a lot of tables asociated to sf_guard_users table so exists more than one table storing profiles fields. Wich are the better ways to deal...
Re: Invalid ICC Profile Jan 22, 2010 Hi Stuart, It might be that you have an Invalid ICC profile :-) but it would be hard for us to confirm this without taking a look at the input you supplied to fop 0.93. If you do not want to post the input , please provide another example that...
Re: Permanent Profile URL Feb 23, 2010 > You could make a custom TinyURL. > Or you could buy a domain name and have it forward to your Twitter profile.
Permanent Profile URL Feb 22, 2010 Is there a permanent profile URL for users? Something like http://twitter.com/account/profile?user_id=14757201 I'd like something that is ID based (since users can change their short form) but is guaranteed to resolve for a while. Possibly even...
How to get Viewer profile UID and Firstname Feb 24, 2010 HI I understood the Opensocial API, @ this link below. http://code.google.com/p/opensocial-java-client/wiki/TwoLeggedOAuthJava I understood how we can get a persons uid profile name and details regarding his/her friends. But , I am developing an...
Profile avatars with AWS S3 versioning Feb 12, 2010 Now that Amazon S3 supports versioning couldn't profile avatars use static URLs and let browsers handle the caching with ETags? More info on S3 Versioning: http://goo.gl/CMch Abraham
Re: background url showing via api, but not on profile Feb 9, 2010 I think you are right about these issues. The third one you mentioned I think should be fixed in the API: - uploading a new background image via the API does not cause the image to be displayed I just filed this ticket:...
Re: Build profile parameter Feb 4, 2010 This is a multi-part message in MIME format. This is a multi-part message in MIME format. you should already have access to all the command line args. if you have a profile like this, the params are recognized: dependencies = { action:...
Facebook Will Be Google-able (If Your Profile is Set to Public)
Dec 7, 2009 How To Target Your SEO Landing Page’s Demographic Profile Dec 11, 2009 How to Display Author’s Twitter and Facebook on the Profile Page Dec 29, 2009 Muziic Brings Tons of Music to your Facebook Profile Dec 28, 2009 5 Minute Tour of New Facebook Profile Integration Points Jun 16, 2008 Hovercards: Twitter Launches New Profile Preview Feature Feb 3, 2010 Facebook Profile For Holocaust Victim Brings History to Life Feb 4, 2010 Profile of a Status Updater: It’s a Woman’s World [Report] Jan 19, 2010 7 Precious Snowflakes That Almost Melted Away (Our Favorite Low Profile Stories This Week) Mar 5, 2010 Too Easy: How a Simple Hack Can Turn Your Numeric Google Profile URL Back into a Gmail Address Feb 12, 2010 | |||