How can I create certification_name and degree_school? - linkedin-api

I would like to fullfill the certification form.
I have this url from linkedin : https://www.linkedin.com/profile/add?startTask=CERTIFICATION_NAME and I would like to create my own "certification_name" but I don't know how to do that. It's the same problem with degree_school.
Can you help me please ?

Related

Opcsoft Rewrite: redirect to subdomains / custom portal

I´m trying to do the following scenarios:
In my app I have an entity like "CustomerPortal". A user from my app can have a customer portal which has an ID.
myapp.com/portal/customerportal?id=123456 -> This is than the customer portal from User1.
My user has also customers. For those customers my user don´t like to share the url like: myapp.com/portal/customerportal?id=123456
So he would like to have some URL like: portal.mycustomerdomain.com
The customer portal has also subpages, like:
myapp.com/portal/customerportal/page1.jsf
myapp.com/portal/customerportal/page2.jsf
etc.
All subpages should redirect than also to:
portal.mycustomerdomain.com/page1
portal.mycustomerdomain.com/page2
Is there a config needed with Opcsoft Rewrite?
How should this look like?
Is there also some settings needed from my users his customer on his webpage?
Like some redirects (A records etc.)?
I found a website which are doing something like I would like to do:
https://scrappbook.zendesk.com/hc/de/articles/4403073986961-Starte-hier-Domain-anbinden
(Sorry it´s in German)
I checked also the documentation, but seems like also the forum and links a broken.
Therefore in general some question:
Direction.isOutbound() vs Direction.isInbound()
-> What´s the different? When do I use which one?
Domain.matches("username")
-> What does this mean? "matches" ?
SendError.code from which package does SendError comes from?
Many thanks for help

Confluence User Macro get email address

Hi I'm trying to get the email address of a user with a supplied username parameter. I've been looking on here: https://docs.atlassian.com/atlassian-confluence/6.6.0/
But I haven't been able to find what I'm after.
I'm able to get the users name and profile pic, but I'm stuck on email, so if anyone could point me in the right direction that would be great!
I'm looking to do something like this, where I request the users email address based on the supplied username. But I can't find anything that matches up to that.
#set($email = $action.getEmail($paramUsername)) //one that I've tried but doesn't work!
--Full name and User pic if that helps anyone else!
> #set($displayName = $action.getUserFullName($paramUsername))
> #set($userPic = $userAccessor.getUserProfilePicture($userAccessor.getUserByName($paramUsername)).getUriReference())
Thanks!
Someone on another forum kindly helped me out and I thought I'd post the answer here in case anyone else stumbles on this question!
$userAccessor.getUserByName('$paramUsername').getEmail()

Magento 2 Category URL?

I'm trying to find the URL directly to categories - I use Megamenu but I've tried everything I can find but keep getting 404 errors
For this example let's assume im trying to get the link to 'Furniture' category which contains active products, the direct link to the product works fine using domain.com/my-main-product.html
I've tried
http://example.com/furniture
http://example.com/catalog/furniture
http://example.com/catalog/category/view/id/143
Can anyone recommend how I can find them please - my layout currently is:
Default Category
Furniture
Test Category
All I get is 'Page doesnt exist' (404)
Any help would be greatly appreciated
Please check the following path.
{select category}--> search engine optimization-->url key.
You can see the URL there. When you visit you should append .html to the URL. For example, if the value is furniture your URL should be like this
http://example.com/furniture.html
or
http://example.com/index.php/furniture.html (if mod_rewrite is not enabled)

Redirect url does not match registered redirect url in instragram

i am using this libray https://github.com/crino/instagram-ios-sdk after login we getting one error
we created app in instrantgram like :
i have add URL scheme to my application's plist file
how to solve this issue please help me
i got my mistake
Redirect url ig3213f9bbab4841aba216996a24e9138e://authorize
It is clearly stated in the Instagram iOS SDK documentation that the URL Scheme needs to be structured as:
ig[clientId]://
So in your case:
ig3213f9b...
Will not work, try
ig32313...://
You are using OAuth and you are trying to run it on browser.
What you are missing is your OAuth Token, Please check if its there when you hit the API in your code.
May be it can help you..
set the call back url like this:

Twitter API integration problem in iphone

I am integrating this API in twitter.
http://mobile.tutsplus.com/tutorials/iphone/twitter-api-iphone/
but when I am running it with my application I am seeing an message
" TWoah there!
This page is no longer valid. It looks like someone already used the token information you provided. Please return to the site that sent you to this page and try again ... it was probably an honest mistake ".
I have given right kOAuthConsumerKey and kOAuthConsumerSecret. What is wrong with the code ?
Thanks in advance.
You have to get new ConsumerSecret and ConsumerKey, the given keys in tutorial will not work. Sign in here and obtain keys for use.