New Paypal Credential Not Found - paypal

Could not find the link to get paypal credential for live and test account. I have looked at the following page, but the page does not correspond with newly developed site.
https://www.paypal.com/us/cgi-bin/webscr?cmd=xpt/cps/merchant/wppro/WPProIntegrationSteps-outside
Please help if you have any idea.. !!!

Have a look at Creating and Managing Classic API Credentials.

Found the details are here.
https://developer.paypal.com/docs/classic/lifecycle/sb_credentials/
Thanks

Related

How to pass Facebook chatbot tech provider

We have developed a Facebook chatbot for Meta bussiness suite. But it is restricted and need to pass tech provider certification. We have tried several times but all were refused. The problem is that Facebook didn't give any information about what's the problem is, we don't know how to pass it. If anyone knows how to pass Facebook tech provider certification, please give me some advices, thank you. We can also pay some fee to get the help.
I want someone who have pass the verification to give me some advices.

My terms in Google Account 0Auth signup flow?

Newbie here. Does anyone know if I can add my site's terms to the google 0Auth Account setup flow?
Otherwise, I need another T&C's acceptance in my flow.
You should add a link to your TOS in the GCP Oauth page for your project. See the "User Consent" section on the help page.

Whatsapp account menu is missing in the facebook business account

Please help me to solve the issue.
The issue is,
After creating a Facebook business account for WhatsApp business API service. I did not found/see the menu of WhatsApp account setting in this. How to enable this menu. Could you please advice?
I am facing this same issue but as per the documentation here, Facebook is releasing this feature gradually and is not currently available to all the users.
This feature is gradually rolling out and may not be available to you right now.
i know it is a very old post but still people searching for information about this question... it is very simple answer just change the category on your Facebook page.. Whatsapp button will show again

PayPal rest api not saving 'live'

I have had an app developed in it processed orders in 'sandbox' mode. No I've tried a live payment it just keeps spinning on the app.
I went to the rest api on the PayPal Developer site, but when I click from 'sandbox to live' and click save it reverts back to sandbox.
The developer of the app is not being very helpful and PayPal is difficult to get help from.... so I have found this place ;-)
Hopefully somebody can help.
Thanks
Please try again in different web browsers by clearing cookies and cache. If you are still persisting the same issue, kindly file an MTS ticket for PayPal at: https://www.paypal-techsupport.com/ , with screenshots and steps for reproducing ths issue. Then you will get help from the PayPal MTS team.

Photobucket IOS integration

could anyone assist in authenticating to photobucket and uploading an image from and iPhone app? I am currently configured with many networks but I can't really find good documentation for the photobucket process. I guess the process is only authenticate and upload using customer key then username and password of the user?
Any help here would be amazing! Thanks in advance!
Jim
Jim, the Photobucket (PB) process for authenticating is modified OAUTH. If you start looking at OAUTH examples you will find that you can authenticate on PB by simply converting a sample over to PB. e.g.: There's an OAuth starter kit set up for LinkedIN by Lee WHitney on Github courtesy of Kirsten Jones. Register an app with PB, get your keys and plug in the keys & correct PB URLs and you will be working. The URLS you need are:-
requestTokenURLString = #"http://api.photobucket.com/login/request";
accessTokenURLString = #"http://api.photobucket.com/login/access";
userLoginURLString = #"http://photobucket.com/apilogin/login";
This will get you logged in but there's a lot more to come. PB have a code page and there is an Objective-C library including a modified OAUTH but it's missing docs so you need to work it out by studying the code. Bitbucket Photobucket code for objective-c
The issue I have is to do with their usage of sub domains and trying to get OAUTH to work with that.
UPDATE: Solved: I have at last worked out how to get a part of the provided API working in my own Xcode project. Basically I added the special Oauth files which enable the requests to be set up correctly to get round the subdomain stuff.
eg: OAuthASIHTTPRequest etc
I'm now getting full album info.
Official documentation for Photobucket API is available at: http://pic.pbsrc.com/dev_help/WebHelpPublic/PhotobucketPublicHelp.htm . You can find examples for login and media uploading.
Client libraries for Photobucket API are at: https://bitbucket.org/photobucket/api/wiki/Client_Libraries . There is a Objective-C one, like SundialSoft mentioned in answer.